CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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 
37 #endif
int level() const
int base() const
int super() const
double b
Definition: hdecay.h:120
LevelBaseNumber(const int l, const int s, const int b)