CMS 3D CMS Logo

BeamSpotHistogramMaker.cc
Go to the documentation of this file.
7 #include "TH2F.h"
8 #include "TH1F.h"
9 #include "TProfile.h"
10 
12  : _currdir(nullptr), _histoParameters(), _rhm(iC) {}
13 
15  : _currdir(nullptr),
16  _histoParameters(iConfig.getUntrackedParameter<edm::ParameterSet>("histoParameters", edm::ParameterSet())),
17  _rhm(iC) {}
18 
20 
23  TFileDirectory* currdir = &(tfserv->tFileDirectory());
24 
25  if (!dirname.empty()) {
26  currdir = new TFileDirectory(tfserv->mkdir(dirname));
27  _currdir = currdir;
28  }
29 
30  edm::LogInfo("HistogramBooking") << "BeamSpot histogram booking in directory " << dirname;
31 
32  _hbsxrun = _rhm.makeTH1F("bsxrun",
33  "BeamSpot X position",
34  _histoParameters.getUntrackedParameter<unsigned int>("nBinX", 200),
35  _histoParameters.getUntrackedParameter<double>("xMin", -1.),
36  _histoParameters.getUntrackedParameter<double>("xMax", 1.));
37 
38  _hbsyrun = _rhm.makeTH1F("bsyrun",
39  "BeamSpot Y position",
40  _histoParameters.getUntrackedParameter<unsigned int>("nBinY", 200),
41  _histoParameters.getUntrackedParameter<double>("yMin", -1.),
42  _histoParameters.getUntrackedParameter<double>("yMax", 1.));
43 
44  _hbszrun = _rhm.makeTH1F("bszrun",
45  "BeamSpot Z position",
46  _histoParameters.getUntrackedParameter<unsigned int>("nBinZ", 200),
47  _histoParameters.getUntrackedParameter<double>("zMin", -1.),
48  _histoParameters.getUntrackedParameter<double>("zMax", 1.));
49 
50  _hbssigmaxrun = _rhm.makeTH1F("bssigmaxrun",
51  "BeamSpot sigmaX",
52  _histoParameters.getUntrackedParameter<unsigned int>("nBinSigmaX", 200),
53  _histoParameters.getUntrackedParameter<double>("sigmaXMin", 0.),
54  _histoParameters.getUntrackedParameter<double>("sigmaXMax", 0.025));
55 
56  _hbssigmayrun = _rhm.makeTH1F("bssigmayrun",
57  "BeamSpot sigmaY",
58  _histoParameters.getUntrackedParameter<unsigned int>("nBinSigmaY", 200),
59  _histoParameters.getUntrackedParameter<double>("sigmaYMin", 0.),
60  _histoParameters.getUntrackedParameter<double>("sigmaYMax", 0.025));
61 
62  _hbssigmazrun = _rhm.makeTH1F("bssigmazrun",
63  "BeamSpot sigmaZ",
64  _histoParameters.getUntrackedParameter<unsigned int>("nBinSigmaZ", 200),
65  _histoParameters.getUntrackedParameter<double>("sigmaZMin", 0.),
66  _histoParameters.getUntrackedParameter<double>("sigmaZMax", 15.));
67 
69  _rhm.makeTProfile("bsxvsorbrun", "BeamSpot X position vs orbit number", 1600, 0.5, 1600. * 16384 + 0.5);
71  _rhm.makeTProfile("bsyvsorbrun", "BeamSpot Y position vs orbit number", 1600, 0.5, 1600. * 16384 + 0.5);
73  _rhm.makeTProfile("bszvsorbrun", "BeamSpot Z position vs orbit number", 1600, 0.5, 1600. * 16384 + 0.5);
75  _rhm.makeTProfile("bssigmaxvsorbrun", "BeamSpot sigmaX vs orbit number", 1600, 0.5, 1600. * 16384 + 0.5);
77  _rhm.makeTProfile("bssigmayvsorbrun", "BeamSpot sigmaY vs orbit number", 1600, 0.5, 1600. * 16384 + 0.5);
79  _rhm.makeTProfile("bssigmazvsorbrun", "BeamSpot sigmaZ vs orbit number", 1600, 0.5, 1600. * 16384 + 0.5);
80 }
81 
82 void BeamSpotHistogramMaker::beginRun(const unsigned int nrun) {
83  char runname[100];
84  sprintf(runname, "run_%d", nrun);
85 
86  TFileDirectory* currdir = _currdir;
87  if (currdir == nullptr) {
89  currdir = &(tfserv->tFileDirectory());
90  }
91 
92  _rhm.beginRun(nrun, *currdir);
93 
94  (*_hbsxrun)->GetXaxis()->SetTitle("X [cm]");
95  (*_hbsxrun)->GetYaxis()->SetTitle("Events");
96  (*_hbsyrun)->GetXaxis()->SetTitle("Y [cm]");
97  (*_hbsyrun)->GetYaxis()->SetTitle("Events");
98  (*_hbszrun)->GetXaxis()->SetTitle("Z [cm]");
99  (*_hbszrun)->GetYaxis()->SetTitle("Events");
100  (*_hbssigmaxrun)->GetXaxis()->SetTitle("sigmaX [cm]");
101  (*_hbssigmaxrun)->GetYaxis()->SetTitle("Events");
102  (*_hbssigmayrun)->GetXaxis()->SetTitle("sigmaY [cm]");
103  (*_hbssigmayrun)->GetYaxis()->SetTitle("Events");
104  (*_hbssigmazrun)->GetXaxis()->SetTitle("sigmaZ [cm]");
105  (*_hbssigmazrun)->GetYaxis()->SetTitle("Events");
106 
107  (*_hbsxvsorbrun)->GetXaxis()->SetTitle("time [orbit#]");
108  (*_hbsxvsorbrun)->GetYaxis()->SetTitle("X [cm]");
109  (*_hbsxvsorbrun)->SetCanExtend(TH1::kAllAxes);
110  (*_hbsyvsorbrun)->GetXaxis()->SetTitle("time [orbit#]");
111  (*_hbsyvsorbrun)->GetYaxis()->SetTitle("Y [cm]");
112  (*_hbsyvsorbrun)->SetCanExtend(TH1::kAllAxes);
113  (*_hbszvsorbrun)->GetXaxis()->SetTitle("time [orbit#]");
114  (*_hbszvsorbrun)->GetYaxis()->SetTitle("Z [cm]");
115  (*_hbszvsorbrun)->SetCanExtend(TH1::kAllAxes);
116  (*_hbssigmaxvsorbrun)->GetXaxis()->SetTitle("time [orbit#]");
117  (*_hbssigmaxvsorbrun)->GetYaxis()->SetTitle("sigmaX [cm]");
118  (*_hbssigmaxvsorbrun)->SetCanExtend(TH1::kAllAxes);
119  (*_hbssigmayvsorbrun)->GetXaxis()->SetTitle("time [orbit#]");
120  (*_hbssigmayvsorbrun)->GetYaxis()->SetTitle("sigmaY [cm]");
121  (*_hbssigmayvsorbrun)->SetCanExtend(TH1::kAllAxes);
122  (*_hbssigmazvsorbrun)->GetXaxis()->SetTitle("time [orbit#]");
123  (*_hbssigmazvsorbrun)->GetYaxis()->SetTitle("sigmaZ [cm]");
124  (*_hbssigmazvsorbrun)->SetCanExtend(TH1::kAllAxes);
125 }
126 
127 void BeamSpotHistogramMaker::fill(const unsigned int orbit, const reco::BeamSpot& bs) {
128  if (_hbsxrun && *_hbsxrun)
129  (*_hbsxrun)->Fill(bs.x0());
131  (*_hbsxvsorbrun)->Fill(orbit, bs.x0());
132 
133  if (_hbsyrun && *_hbsyrun)
134  (*_hbsyrun)->Fill(bs.y0());
136  (*_hbsyvsorbrun)->Fill(orbit, bs.y0());
137 
138  if (_hbszrun && *_hbszrun)
139  (*_hbszrun)->Fill(bs.z0());
141  (*_hbszvsorbrun)->Fill(orbit, bs.z0());
142 
144  (*_hbssigmaxrun)->Fill(bs.BeamWidthX());
146  (*_hbssigmayrun)->Fill(bs.BeamWidthY());
148  (*_hbssigmazrun)->Fill(bs.sigmaZ());
150  (*_hbssigmaxvsorbrun)->Fill(orbit, bs.BeamWidthX());
152  (*_hbssigmayvsorbrun)->Fill(orbit, bs.BeamWidthY());
154  (*_hbssigmazvsorbrun)->Fill(orbit, bs.sigmaZ());
155 }
BeamSpotHistogramMaker(edm::ConsumesCollector &&iC)
double z0() const
z coordinate
Definition: BeamSpot.h:65
T getUntrackedParameter(std::string const &, T const &) const
void book(const std::string dirname="")
#define nullptr
void beginRun(const unsigned int nrun)
TFileDirectory & tFileDirectory()
Definition: TFileService.h:42
TH1F ** makeTH1F(const char *name, const char *title, const unsigned int nbinx, const double xmin, const double xmax)
void fill(const unsigned int orbit, const reco::BeamSpot &bs)
TProfile ** makeTProfile(const char *name, const char *title, const unsigned int nbinx, const double xmin, const double xmax)
double BeamWidthX() const
beam width X
Definition: BeamSpot.h:82
TFileDirectory mkdir(const std::string &dir, const std::string &descr="")
create a new subdirectory
Definition: TFileService.h:69
void beginRun(const edm::Run &iRun)
double sigmaZ() const
sigma z
Definition: BeamSpot.h:76
double BeamWidthY() const
beam width Y
Definition: BeamSpot.h:84
HLT enums.
double y0() const
y coordinate
Definition: BeamSpot.h:63
const edm::ParameterSet _histoParameters
double x0() const
x coordinate
Definition: BeamSpot.h:61