CMS 3D CMS Logo

DTResidualCalibration.h
Go to the documentation of this file.
1 #ifndef CalibMuon_DTCalibration_DTResidualCalibration_h
2 #define CalibMuon_DTCalibration_DTResidualCalibration_h
3 
14 
16 
17 #include <string>
18 #include <vector>
19 #include <map>
20 
21 class TFile;
22 class TH1F;
23 class TH2F;
24 class DTGeometry;
25 class DTSuperLayerId;
26 class DTLayerId;
27 
29  public:
33  ~DTResidualCalibration() override;
34 
35  void beginJob() override;
36  void beginRun(const edm::Run&, const edm::EventSetup&) override;
37  void endJob() override;
38  void analyze(const edm::Event& event, const edm::EventSetup& setup) override;
39 
40  protected:
41 
42  private:
43 
44  unsigned int nevent;
45  unsigned int segmok,segmbad;
46 
47  float segmentToWireDistance(const DTRecHit1D& recHit1D, const DTRecSegment4D& segment);
48  // Book a set of histograms for a given super-layer/layer
49  void bookHistos(DTSuperLayerId slId);
50  void bookHistos(DTLayerId slId);
51  // Fill a set of histograms for a given super-layer/layer
52  void fillHistos(DTSuperLayerId slId, float distance, float residualOnDistance);
53  void fillHistos(DTLayerId slId, float distance, float residualOnDistance);
54 
56  double histRange_;
59 
61  TFile* rootFile_;
62  // Geometry
64  // Histograms per super-layer
65  std::map<DTSuperLayerId, std::vector<TH1F*> > histoMapTH1F_;
66  std::map<DTSuperLayerId, std::vector<TH2F*> > histoMapTH2F_;
67  // Histograms per layer
68  std::map<DTLayerId, std::vector<TH1F*> > histoMapPerLayerTH1F_;
69  std::map<DTLayerId, std::vector<TH2F*> > histoMapPerLayerTH2F_;
70 };
71 #endif
void fillHistos(DTSuperLayerId slId, float distance, float residualOnDistance)
void bookHistos(DTSuperLayerId slId)
std::map< DTLayerId, std::vector< TH1F * > > histoMapPerLayerTH1F_
DTResidualCalibration(const edm::ParameterSet &pset)
Constructor.
def setup(process, global_tag, zero_tesla=False)
Definition: GeneralSetup.py:2
std::map< DTSuperLayerId, std::vector< TH1F * > > histoMapTH1F_
void beginRun(const edm::Run &, const edm::EventSetup &) override
std::map< DTLayerId, std::vector< TH2F * > > histoMapPerLayerTH2F_
std::map< DTSuperLayerId, std::vector< TH2F * > > histoMapTH2F_
~DTResidualCalibration() override
Destructor.
void analyze(const edm::Event &event, const edm::EventSetup &setup) override
const DTGeometry * dtGeom_
float segmentToWireDistance(const DTRecHit1D &recHit1D, const DTRecSegment4D &segment)
Definition: event.py:1
Definition: Run.h:44