1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
#ifndef GeomDetType_H
#define GeomDetType_H
#include <string>
#include "Geometry/CommonTopologies/interface/GeomDetEnumerators.h"
class Topology;
class GeomDetType {
public:
typedef GeomDetEnumerators::SubDetector SubDetector;
GeomDetType(const std::string& name, SubDetector subdet);
virtual ~GeomDetType();
virtual const Topology& topology() const = 0;
const std::string& name() const { return theName; }
SubDetector subDetector() const { return theSubDet; }
bool isBarrel() const;
bool isEndcap() const;
bool isTrackerStrip() const;
bool isTrackerPixel() const;
bool isInnerTracker() const;
bool isOuterTracker() const;
bool isTracker() const;
bool isDT() const;
bool isCSC() const;
bool isRPC() const;
bool isGEM() const;
bool isME0() const;
bool isMuon() const;
bool isTiming() const;
private:
std::string theName;
SubDetector theSubDet;
};
#endif
|