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 
20  public:
21  LevelBaseNumber(const int l,const int s,const int b){
22  myLevel=l;
23  mySuper=s;
24  myBase=b;
25  };
27 
28  int level() const {return myLevel;};
29  int super() const {return mySuper;};
30  int base() const {return myBase;};
31 
32  private:
33  int myLevel;
34  int mySuper;
35  int myBase;
36 
37 };
38 
39 #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)