File indexing completed on 2024-04-06 12:27:13
0001 #ifndef Navigation_MuonNavigationPrinter_H
0002 #define Navigation_MuonNavigationPrinter_H
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024
0025 class DetLayer;
0026 class MuonDetLayerGeometry;
0027 class GeometricSearchTracker;
0028 class MuonNavigationSchool;
0029
0030 #include <vector>
0031 #include <string>
0032
0033 class MuonNavigationPrinter {
0034 public:
0035 MuonNavigationPrinter(const MuonDetLayerGeometry *,
0036 MuonNavigationSchool const &,
0037 bool enableRPC = true,
0038 bool enableCSC = true,
0039 bool enableGEM = false,
0040 bool enableME0 = false);
0041 MuonNavigationPrinter(const MuonDetLayerGeometry *, MuonNavigationSchool const &, const GeometricSearchTracker *);
0042
0043 private:
0044 void printLayer(const DetLayer *) const;
0045 void printLayers(const std::vector<const DetLayer *> &) const;
0046
0047
0048
0049
0050
0051 MuonNavigationSchool const *school = nullptr;
0052 };
0053 #endif