CMS 3D CMS Logo

LevelBaseNumber.h
Go to the documentation of this file.
1 #ifndef MuonNumbering_LevelBaseNumber_h
2 #define MuonNumbering_LevelBaseNumber_h
3 
18 public:
19  LevelBaseNumber(const int l, const int s, const int b) {
20  myLevel = l;
21  mySuper = s;
22  myBase = b;
23  };
25 
26  int level() const { return myLevel; };
27  int super() const { return mySuper; };
28  int base() const { return myBase; };
29 
30 private:
31  int myLevel;
32  int mySuper;
33  int myBase;
34 };
35 
36 #endif
int level() const
int super() const
int base() const
double b
Definition: hdecay.h:118
LevelBaseNumber(const int l, const int s, const int b)