CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
EcalBarrelSimHitsValidation.h
Go to the documentation of this file.
1 #ifndef EcalBarrelSimHitsValidation_H
2 #define EcalBarrelSimHitsValidation_H
3 
4 /*
5  * \file EcalBarrelSimHitsValidation.h
6  *
7  * \author C.Rovelli
8  *
9 */
10 
13 
18 
21 
24 
28 
29 #include <iostream>
30 #include <fstream>
31 #include <vector>
32 #include <map>
34 
35 
37 
38  typedef std::map<uint32_t,float,std::less<uint32_t> > MapType;
39 
40 public:
41 
44 
47 
48 protected:
49 
51 void analyze(const edm::Event& e, const edm::EventSetup& c);
52 
53 // BeginJob
54 void beginJob();
55 
56 // EndJob
57 void endJob(void);
58 
59 private:
60 
61  uint32_t getUnitWithMaxEnergy(MapType& themap);
62 
63  virtual float energyInMatrixEB(int nCellInEta, int nCellInPhi,
64  int centralEta, int centralPhi, int centralZ,
65  MapType& themap);
66 
67  std::vector<uint32_t> getIdsAroundMax(int nCellInEta, int nCellInPhi,
68  int centralEta, int centralPhi, int centralZ,
69  MapType& themap);
70 
71 
72  bool fillEBMatrix(int nCellInEta, int nCellInPhi,
73  int CentralEta, int CentralPhi,int CentralZ,
74  MapType& fillmap, MapType& themap);
75 
76  float eCluster2x2( MapType& themap);
77  float eCluster4x4(float e33,MapType& themap);
78 
79  std::string g4InfoLabel;
80  std::string EBHitsCollection;
81  std::string ValidationCollection;
82 
83  bool verbose_;
84 
86 
87  std::string outputFile_;
88 
89  int myEntries;
90  float eRLength[26];
91 
93 
95 
97 
99 
101 
103 
105 
107 
109 
111 
113 
119 
127 };
128 
129 #endif
std::map< uint32_t, float, std::less< uint32_t > > MapType
std::vector< uint32_t > getIdsAroundMax(int nCellInEta, int nCellInPhi, int centralEta, int centralPhi, int centralZ, MapType &themap)
void analyze(const edm::Event &e, const edm::EventSetup &c)
Analyze.
float eCluster4x4(float e33, MapType &themap)
uint32_t getUnitWithMaxEnergy(MapType &themap)
virtual float energyInMatrixEB(int nCellInEta, int nCellInPhi, int centralEta, int centralPhi, int centralZ, MapType &themap)
bool fillEBMatrix(int nCellInEta, int nCellInPhi, int CentralEta, int CentralPhi, int CentralZ, MapType &fillmap, MapType &themap)
EcalBarrelSimHitsValidation(const edm::ParameterSet &ps)
Constructor.