test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HFEMClusterShape.h
Go to the documentation of this file.
1 
2 #ifndef HFEMClusterShape_h
3 #define HFEMClusterShape_h
4 
5 #include <Rtypes.h>
8 /*class reco::HFEMClusterShape HFEMClusterShape.h DataFormats/EgammaReco/interface/HFEMClusterShape.h
9  *
10  * A Cluster Shape of a Possible EM cluster in the HF detector
11  * Contains the DetId of its Seed
12  *
13  * \author Kevin Klapoetke, University of Minnesota
14  *
15  *
16  */
17 
18 namespace reco {
19 
21  public:
23 
24  HFEMClusterShape(double eLong1x1,double eShort1x1,
25  double eLong3x3,double eShort3x3,double eLong5x5,
26  double eShort5x5,double eLongCore,
27  double CellEta,double CellPhi,
28  DetId seed);
29 
30 
31  //energy in long or short fibers various cluster sizes
32  double eLong1x1() const {return eLong1x1_;}
33  double eShort1x1() const {return eShort1x1_;}
34  double eLong3x3() const {return eLong3x3_;}
35  double eShort3x3() const {return eShort3x3_;}
36  double eLong5x5() const {return eLong5x5_;}
37  double eShort5x5() const {return eShort5x5_;}
38 
39  //total energy in various clusters
40  double e1x1() const;
41  double e3x3() const;
42  double e5x5() const;
43 
44  //Identification Variables
45  //Longetudinal variable: E(3x3,short fibers)/E(3x3,long fibers)
46  double eSeL() const;
47  //Transverse Variable: E(Core of cluster)/E(3x3)
48  double eCOREe9() const;
49  //Shower Exclusion Variable: E(3x3)/E(5x5)
50  double e9e25() const;
51 
52  //energy in central highest energy cells (at least 50% energy of previous total energy startign with seed cell)
53  double eCore() const {return eLongCore_;}
54 
55  double CellEta() const {return CellEta_;}
56  double CellPhi() const {return CellPhi_;}
57 
58  //seed cell of cluster DetId
59  DetId seed() const {return seed_;}
60 
61  private:
64 
65  };
66 
67 }
68 
69 
70 #endif
double eLong5x5() const
double eLong1x1() const
double CellPhi() const
double eShort3x3() const
double eLong3x3() const
Definition: DetId.h:18
double eShort1x1() const
double eShort5x5() const
double CellEta() const