ATLAS Offline Software
Loading...
Searching...
No Matches
ActsLayerBuilder.h File Reference
#include "ActsGeometry/ActsDetectorElement.h"
#include "ActsGeometry/ActsElementVector.h"
#include "CxxUtils/checker_macros.h"
#include "Acts/Geometry/ILayerBuilder.hpp"
#include "Acts/Utilities/Logger.hpp"
#include "Acts/Utilities/BinningType.hpp"
#include "Acts/Utilities/AxisDefinitions.hpp"
#include "Acts/Geometry/GeometryContext.hpp"
#include "Acts/Definitions/Units.hpp"
#include <mutex>
#include <array>
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  ActsLayerBuilder
struct  ActsLayerBuilder::Config
 nested configuration struct for steering of the layer builder More...

Namespaces

namespace  InDetDD
 Message Stream Member.
namespace  Acts
 This class is not to needed in AthSimulation.

Functions

std::ostream & operator<< (std::ostream &os, const ActsLayerBuilder::Mode &mode)

Function Documentation

◆ operator<<()

std::ostream & operator<< ( std::ostream & os,
const ActsLayerBuilder::Mode & mode )

Definition at line 604 of file ActsLayerBuilder.cxx.

604 {
605
607 switch(mode) {
608 case Mode::Undefined:
609 os << "Undefined";
610 break;
611 case Mode::Pixel:
612 os << "Pixel";
613 break;
614 case Mode::SCT:
615 os << "SCT";
616 break;
617 case Mode::TRT:
618 os << "TRT";
619 break;
620 case Mode::ITkPixelInner:
621 os << "ITkPixelInner";
622 break;
623 case Mode::ITkPixelOuter:
624 os << "ITkPixelOuter";
625 break;
626 case Mode::ITkStrip:
627 os << "ITkStrip";
628 break;
629 }
630
631 return os;
632}