CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
VertexHistogramMaker.cc
Go to the documentation of this file.
11 #include "TH2F.h"
12 #include "TH1F.h"
13 #include "TProfile.h"
14 
15 
17  : m_currdir(0), m_maxLS(100), m_weightThreshold(0.5), m_trueOnly(true)
18  , m_runHisto(true), m_runHistoProfile(true), m_runHistoBXProfile(true), m_runHistoBXProfile2D(false), m_runHisto2D(false)
19  , m_bsConstrained(false)
20  , m_histoParameters()
21  , m_rhm(iC)
22  , m_fhm(iC) { }
23 
25  : m_currdir(0)
26  , m_maxLS(iConfig.getParameter<unsigned int>("maxLSBeforeRebin"))
27  , m_weightThreshold(iConfig.getUntrackedParameter<double>("weightThreshold",0.5))
28  , m_trueOnly(iConfig.getUntrackedParameter<bool>("trueOnly",true))
29  , m_runHisto(iConfig.getUntrackedParameter<bool>("runHisto",true))
30  , m_runHistoProfile(iConfig.getUntrackedParameter<bool>("runHistoProfile",true))
31  , m_runHistoBXProfile(iConfig.getUntrackedParameter<bool>("runHistoBXProfile",true))
32  , m_runHistoBXProfile2D(iConfig.getUntrackedParameter<bool>("runHistoBXProfile2D",false))
33  , m_runHisto2D(iConfig.getUntrackedParameter<bool>("runHisto2D",false))
34  , m_bsConstrained(iConfig.getParameter<bool>("bsConstrained"))
35  , m_histoParameters(iConfig.getUntrackedParameter<edm::ParameterSet>("histoParameters",edm::ParameterSet()))
36  , m_lumiDetailsToken( iC.consumes< LumiDetails, edm::InLumi >( edm::InputTag( std::string( "lumiProducer" ) ) ) )
37  , m_rhm(iC, false),m_fhm(iC, true)
38 { }
39 
40 
42 
43  delete m_currdir;
44 
45 }
46 
47 
49 
51  TFileDirectory* currdir = &(tfserv->tFileDirectory());
52 
53  if(dirname!="") {
54  currdir = new TFileDirectory(tfserv->mkdir(dirname));
55  m_currdir = currdir;
56  }
57 
58  edm::LogInfo("HistogramBooking") << "Vertex histogram booking in directory " << dirname;
59 
60  m_hnvtx = currdir->make<TH1F>("nvtx","Number of Vertices",60,-0.5,59.5);
61  m_hnvtx->GetXaxis()->SetTitle("vertices"); m_hnvtx->GetYaxis()->SetTitle("Events");
62 
63  m_hntruevtx = currdir->make<TH1F>("ntruevtx","Number of True Vertices",60,-0.5,59.5);
64  m_hntruevtx->GetXaxis()->SetTitle("vertices"); m_hntruevtx->GetYaxis()->SetTitle("Events");
65 
66  m_hntruevtxvslumi = currdir->make<TProfile>("ntruevtxvslumi","Number of True Vertices vs BX lumi",250,0.,10.);
67  m_hntruevtxvslumi->GetXaxis()->SetTitle("BX lumi [10^{30}cm^{-2}s^{-1}]"); m_hntruevtxvslumi->GetYaxis()->SetTitle("Vertices");
68 
69  m_hntruevtxvslumi2D = currdir->make<TH2D>("ntruevtxvslumi2D","Number of True Vertices vs BX lumi",250,0.,10.,100,-0.5,99.5);
70  m_hntruevtxvslumi2D->GetXaxis()->SetTitle("BX lumi [10^{30}cm^{-2}s^{-1}]"); m_hntruevtxvslumi2D->GetYaxis()->SetTitle("Vertices");
71 
72  m_hntracks = currdir->make<TH1F>("ntracks","Number of Tracks",300,-0.5,299.5);
73  m_hntracks->GetXaxis()->SetTitle("tracks"); m_hntracks->GetYaxis()->SetTitle("Vertices");
74 
75  m_hsqsumptsq = currdir->make<TH1F>("sqsumptsq","sqrt(sum pt**2)",1000,0.,1000.);
76  m_hsqsumptsq->GetXaxis()->SetTitle("sqrt(#Sigma pt^{2}) (GeV)"); m_hsqsumptsq->GetYaxis()->SetTitle("Vertices");
77 
78  char htitle[300];
79  sprintf(htitle,"sqrt(sum pt**2) of Tracks weight > %f",m_weightThreshold);
80  m_hsqsumptsqheavy = currdir->make<TH1F>("sqsumptsqheavy",htitle,1000,0.,1000.);
81  m_hsqsumptsqheavy->GetXaxis()->SetTitle("sqrt(#Sigma pt^{2}) (GeV)"); m_hsqsumptsqheavy->GetYaxis()->SetTitle("Vertices");
82 
83  sprintf(htitle,"Number of Tracks weight > %f",m_weightThreshold);
84  m_hnheavytracks = currdir->make<TH1F>("nheavytracks",htitle,200,-0.5,199.5);
85  m_hnheavytracks->GetXaxis()->SetTitle("tracks"); m_hnheavytracks->GetYaxis()->SetTitle("Vertices");
86 
87  m_hndof = currdir->make<TH1F>("ndof","Number of degree of freedom",250,-0.5,499.5);
88  m_hndof->GetXaxis()->SetTitle("ndof"); m_hndof->GetYaxis()->SetTitle("Vertices");
89 
90  m_hndofvstracks = currdir->make<TH2F>("ndofvstracks","Ndof vs Ntracks",300,-0.5,299.5,250,-0.5,499.5);
91  m_hndofvstracks->GetXaxis()->SetTitle("tracks"); m_hndofvstracks->GetYaxis()->SetTitle("ndof");
92 
93  m_hndofvsvtxz = currdir->make<TProfile>("ndofvsvtxz","Ndof vs Vertex Z position",200,
94  m_histoParameters.getUntrackedParameter<double>("zMin",-20.),
95  m_histoParameters.getUntrackedParameter<double>("zMax",20.));
96  m_hndofvsvtxz->GetXaxis()->SetTitle("Z [cm]"); m_hndofvsvtxz->GetYaxis()->SetTitle("ndof");
97 
98  m_hntracksvsvtxz = currdir->make<TProfile>("ntracksvsvtxz","Ntracks vs Vertex Z position",200,
99  m_histoParameters.getUntrackedParameter<double>("zMin",-20.),
100  m_histoParameters.getUntrackedParameter<double>("zMax",20.));
101  m_hntracksvsvtxz->GetXaxis()->SetTitle("Z [cm]"); m_hntracksvsvtxz->GetYaxis()->SetTitle("tracks");
102 
103  m_haveweightvsvtxz = currdir->make<TProfile>("aveweightvsvtxz","Average weight vs Vertex Z position",200,
104  m_histoParameters.getUntrackedParameter<double>("zMin",-20.),
105  m_histoParameters.getUntrackedParameter<double>("zMax",20.));
106  m_haveweightvsvtxz->GetXaxis()->SetTitle("Z [cm]"); m_haveweightvsvtxz->GetYaxis()->SetTitle("Average weight");
107 
108  m_haveweightvsvtxzchk = currdir->make<TProfile>("aveweightvsvtxzchk","Average weight vs Vertex Z position (check)",200,
109  m_histoParameters.getUntrackedParameter<double>("zMin",-20.),
110  m_histoParameters.getUntrackedParameter<double>("zMax",20.));
111  m_haveweightvsvtxzchk->GetXaxis()->SetTitle("Z [cm]"); m_haveweightvsvtxzchk->GetYaxis()->SetTitle("Average weight");
112 
113  m_hweights = currdir->make<TH1F>("weights","Tracks weights",51,0.,1.02);
114  m_hweights->GetXaxis()->SetTitle("weights"); m_hweights->GetYaxis()->SetTitle("Tracks");
115 
116  m_haveweight = currdir->make<TH1F>("aveweight","Tracks average weights sum",51,0.,1.02);
117  m_haveweight->GetXaxis()->SetTitle("Average weight"); m_haveweight->GetYaxis()->SetTitle("Vertices");
118 
119 
120  m_hvtxx = currdir->make<TH1F>("vtxx","Vertex X position",
121  m_histoParameters.getUntrackedParameter<unsigned int>("nBinX",200),
122  m_histoParameters.getUntrackedParameter<double>("xMin",-1.),
123  m_histoParameters.getUntrackedParameter<double>("xMax",1.)
124  );
125  m_hvtxx->GetXaxis()->SetTitle("X [cm]"); m_hvtxx->GetYaxis()->SetTitle("Vertices");
126 
127  m_hvtxy = currdir->make<TH1F>("vtxy","Vertex Y position",
128  m_histoParameters.getUntrackedParameter<unsigned int>("nBinY",200),
129  m_histoParameters.getUntrackedParameter<double>("yMin",-1.),
130  m_histoParameters.getUntrackedParameter<double>("yMax",1.)
131  );
132  m_hvtxy->GetXaxis()->SetTitle("Y [cm]"); m_hvtxy->GetYaxis()->SetTitle("Vertices");
133 
134  m_hvtxz = currdir->make<TH1F>("vtxz","Vertex Z position",
135  m_histoParameters.getUntrackedParameter<unsigned int>("nBinZ",200),
136  m_histoParameters.getUntrackedParameter<double>("zMin",-20.),
137  m_histoParameters.getUntrackedParameter<double>("zMax",20.)
138  );
139  m_hvtxz->GetXaxis()->SetTitle("Z [cm]"); m_hvtxz->GetYaxis()->SetTitle("Vertices");
140 
141  if(m_runHisto) {
142  m_hvtxxrun = m_rhm.makeTH1F("vtxxrun","Vertex X position",
143  m_histoParameters.getUntrackedParameter<unsigned int>("nBinX",200),
144  m_histoParameters.getUntrackedParameter<double>("xMin",-1.),
145  m_histoParameters.getUntrackedParameter<double>("xMax",1.));
146 
147  m_hvtxyrun = m_rhm.makeTH1F("vtxyrun","Vertex Y position",
148  m_histoParameters.getUntrackedParameter<unsigned int>("nBinY",200),
149  m_histoParameters.getUntrackedParameter<double>("yMin",-1.),
150  m_histoParameters.getUntrackedParameter<double>("yMax",1.));
151 
152  m_hvtxzrun = m_rhm.makeTH1F("vtxzrun","Vertex Z position",
153  m_histoParameters.getUntrackedParameter<unsigned int>("nBinZ",200),
154  m_histoParameters.getUntrackedParameter<double>("zMin",-20.),
155  m_histoParameters.getUntrackedParameter<double>("zMax",20.));
156 
157  if(m_runHistoProfile) {
158  m_hvtxxvsorbrun = m_rhm.makeTProfile("vtxxvsorbrun","Vertex X position vs orbit number",4*m_maxLS,0.5,m_maxLS*262144+0.5);
159  m_hvtxyvsorbrun = m_rhm.makeTProfile("vtxyvsorbrun","Vertex Y position vs orbit number",4*m_maxLS,0.5,m_maxLS*262144+0.5);
160  m_hvtxzvsorbrun = m_rhm.makeTProfile("vtxzvsorbrun","Vertex Z position vs orbit number",4*m_maxLS,0.5,m_maxLS*262144+0.5);
161  m_hnvtxvsorbrun = m_rhm.makeTProfile("nvtxvsorbrun","Number of true vertices vs orbit number",m_maxLS,0.5,m_maxLS*262144+0.5);
162  }
163 
164  if(m_runHisto2D) {
165  m_hnvtxvsbxvsorbrun = m_rhm.makeTProfile2D("nvtxvsbxvsorbrun","Number of true vertices vs BX vs orbit number",
166  3564,-0.5,3563.5,m_maxLS,0.5,m_maxLS*262144+0.5);
167  m_hnvtxvsorbrun2D = m_rhm.makeTH2F("nvtxvsorbrun2D","Number of true vertices vs orbit number",
168  m_maxLS,0.5,m_maxLS*262144+0.5,60,-0.5,59.5);
169  }
170 
171  if(m_runHistoBXProfile) {
172  m_hvtxxvsbxrun = m_fhm.makeTProfile("vtxxvsbxrun","Vertex X position vs BX number",3564,-0.5,3563.5);
173  m_hvtxyvsbxrun = m_fhm.makeTProfile("vtxyvsbxrun","Vertex Y position vs BX number",3564,-0.5,3563.5);
174  m_hvtxzvsbxrun = m_fhm.makeTProfile("vtxzvsbxrun","Vertex Z position vs BX number",3564,-0.5,3563.5);
175 
176  m_hnvtxvsbxrun = m_rhm.makeTProfile("nvtxvsbxrun","Number of true vertices vs BX number",3564,-0.5,3563.5);
177 
179  m_hnvtxvsbxvslumirun = m_fhm.makeTProfile2D("nvtxvsbxvslumirun","Number of vertices vs BX and BX lumi",3564,-0.5,3563.5,250,0.,10.);
180  }
181  if(m_runHisto2D) {
182  m_hvtxxvsbx2drun = m_fhm.makeTH2F("vtxxvsbx2drun","Vertex X position vs BX number",3564,-0.5,3563.5,
183  m_histoParameters.getUntrackedParameter<unsigned int>("nBinX",200),
184  m_histoParameters.getUntrackedParameter<double>("xMin",-1.),
185  m_histoParameters.getUntrackedParameter<double>("xMax",1.));
186  m_hvtxyvsbx2drun = m_fhm.makeTH2F("vtxyvsbx2drun","Vertex Y position vs BX number",3564,-0.5,3563.5,
187  m_histoParameters.getUntrackedParameter<unsigned int>("nBinY",200),
188  m_histoParameters.getUntrackedParameter<double>("yMin",-1.),
189  m_histoParameters.getUntrackedParameter<double>("yMax",1.));
190  m_hvtxzvsbx2drun = m_fhm.makeTH2F("vtxzvsbx2drun","Vertex Z position vs BX number",3564,-0.5,3563.5,
191  m_histoParameters.getUntrackedParameter<unsigned int>("nBinZ",200),
192  m_histoParameters.getUntrackedParameter<double>("zMin",-20.),
193  m_histoParameters.getUntrackedParameter<double>("zMax",20.));
194  }
195  }
196 
197 
198  }
199 }
200 
202 
203  TFileDirectory* currdir = m_currdir;
204  if(currdir==0) {
206  currdir = &(tfserv->tFileDirectory());
207  }
208 
209  m_rhm.beginRun(iRun,*currdir);
210  m_fhm.beginRun(iRun,*currdir);
211 
212 
213  if(m_runHisto) {
214  (*m_hvtxxrun)->GetXaxis()->SetTitle("X [cm]"); (*m_hvtxxrun)->GetYaxis()->SetTitle("Vertices");
215  (*m_hvtxyrun)->GetXaxis()->SetTitle("Y [cm]"); (*m_hvtxyrun)->GetYaxis()->SetTitle("Vertices");
216  (*m_hvtxzrun)->GetXaxis()->SetTitle("Z [cm]"); (*m_hvtxzrun)->GetYaxis()->SetTitle("Vertices");
217 
218  if(m_runHistoProfile) {
219  (*m_hvtxxvsorbrun)->GetXaxis()->SetTitle("time [orbit#]"); (*m_hvtxxvsorbrun)->GetYaxis()->SetTitle("X [cm]");
220  (*m_hvtxxvsorbrun)->SetCanExtend(TH1::kAllAxes);
221  (*m_hvtxyvsorbrun)->GetXaxis()->SetTitle("time [orbit#]"); (*m_hvtxyvsorbrun)->GetYaxis()->SetTitle("Y [cm]");
222  (*m_hvtxyvsorbrun)->SetCanExtend(TH1::kAllAxes);
223  (*m_hvtxzvsorbrun)->GetXaxis()->SetTitle("time [orbit#]"); (*m_hvtxzvsorbrun)->GetYaxis()->SetTitle("Z [cm]");
224  (*m_hvtxzvsorbrun)->SetCanExtend(TH1::kAllAxes);
225  (*m_hnvtxvsorbrun)->GetXaxis()->SetTitle("time [orbit#]"); (*m_hnvtxvsorbrun)->GetYaxis()->SetTitle("Nvertices");
226  (*m_hnvtxvsorbrun)->SetCanExtend(TH1::kAllAxes);
227  }
228 
229  if(m_runHistoBXProfile) {
230  (*m_hvtxxvsbxrun)->GetXaxis()->SetTitle("BX"); (*m_hvtxxvsbxrun)->GetYaxis()->SetTitle("X [cm]");
231  (*m_hvtxyvsbxrun)->GetXaxis()->SetTitle("BX"); (*m_hvtxyvsbxrun)->GetYaxis()->SetTitle("Y [cm]");
232  (*m_hvtxzvsbxrun)->GetXaxis()->SetTitle("BX"); (*m_hvtxzvsbxrun)->GetYaxis()->SetTitle("Z [cm]");
233  (*m_hnvtxvsbxrun)->GetXaxis()->SetTitle("BX"); (*m_hnvtxvsbxrun)->GetYaxis()->SetTitle("Nvertices");
235  (*m_hnvtxvsbxvslumirun)->GetXaxis()->SetTitle("BX"); (*m_hnvtxvsbxvslumirun)->GetYaxis()->SetTitle("BX lumi [10^{30}cm^{-2}s^{-1}]");
236  }
237  if(m_runHisto2D) {
238  (*m_hvtxxvsbx2drun)->GetXaxis()->SetTitle("BX"); (*m_hvtxxvsbx2drun)->GetYaxis()->SetTitle("X [cm]");
239  (*m_hvtxyvsbx2drun)->GetXaxis()->SetTitle("BX"); (*m_hvtxyvsbx2drun)->GetYaxis()->SetTitle("Y [cm]");
240  (*m_hvtxzvsbx2drun)->GetXaxis()->SetTitle("BX"); (*m_hvtxzvsbx2drun)->GetYaxis()->SetTitle("Z [cm]");
241  }
242  }
243 
244  if(m_runHisto2D) {
245  (*m_hnvtxvsbxvsorbrun)->GetXaxis()->SetTitle("BX#"); (*m_hnvtxvsbxvsorbrun)->GetYaxis()->SetTitle("time [orbit#]");
246  (*m_hnvtxvsbxvsorbrun)->SetCanExtend(TH1::kAllAxes);
247  (*m_hnvtxvsorbrun2D)->GetXaxis()->SetTitle("time [orbit#]"); (*m_hnvtxvsorbrun2D)->GetYaxis()->SetTitle("Nvertices");
248  (*m_hnvtxvsorbrun2D)->SetCanExtend(TH1::kAllAxes);
249  }
250  }
251 }
252 
253 void VertexHistogramMaker::fill(const unsigned int orbit, const int bx, const float bxlumi, const reco::VertexCollection& vertices, const double weight) {
254 
255  m_hnvtx->Fill(vertices.size(),weight);
256 
257  int ntruevtx = 0;
258  for(reco::VertexCollection::const_iterator vtx=vertices.begin();vtx!=vertices.end();++vtx) {
259  if(!vtx->isFake()) ntruevtx++;
260 
261  if(!(m_trueOnly && vtx->isFake())) {
262 
263  double aveweight = m_bsConstrained ? vtx->ndof()/(2.*vtx->tracksSize()) : (vtx->ndof()+3)/(2.*vtx->tracksSize());
264 
265  m_hntracks->Fill(vtx->tracksSize(),weight);
266  m_hndof->Fill(vtx->ndof(),weight);
267  m_haveweight->Fill(aveweight,weight);
268  m_hndofvstracks->Fill(vtx->tracksSize(),vtx->ndof(),weight);
269  m_hndofvsvtxz->Fill(vtx->z(),vtx->ndof(),weight);
270  m_hntracksvsvtxz->Fill(vtx->z(),vtx->tracksSize(),weight);
271  m_haveweightvsvtxz->Fill(vtx->z(),aveweight,weight);
272 
273  m_hvtxx->Fill(vtx->x(),weight);
274  m_hvtxy->Fill(vtx->y(),weight);
275  m_hvtxz->Fill(vtx->z(),weight);
276 
277  if(m_runHisto) {
278  if(m_hvtxxrun && *m_hvtxxrun ) (*m_hvtxxrun)->Fill(vtx->x(),weight);
279  if(m_hvtxyrun && *m_hvtxyrun ) (*m_hvtxyrun)->Fill(vtx->y(),weight);
280  if(m_hvtxzrun && *m_hvtxzrun ) (*m_hvtxzrun)->Fill(vtx->z(),weight);
281  if(m_runHistoProfile) {
282  if(m_hvtxxvsorbrun && *m_hvtxxvsorbrun ) (*m_hvtxxvsorbrun)->Fill(orbit,vtx->x(),weight);
283  if(m_hvtxyvsorbrun && *m_hvtxyvsorbrun ) (*m_hvtxyvsorbrun)->Fill(orbit,vtx->y(),weight);
284  if(m_hvtxzvsorbrun && *m_hvtxzvsorbrun ) (*m_hvtxzvsorbrun)->Fill(orbit,vtx->z(),weight);
285  }
286  if(m_runHistoBXProfile) {
287  if(m_hvtxxvsbxrun && *m_hvtxxvsbxrun ) (*m_hvtxxvsbxrun)->Fill(bx%3564,vtx->x(),weight);
288  if(m_hvtxyvsbxrun && *m_hvtxyvsbxrun ) (*m_hvtxyvsbxrun)->Fill(bx%3564,vtx->y(),weight);
289  if(m_hvtxzvsbxrun && *m_hvtxzvsbxrun ) (*m_hvtxzvsbxrun)->Fill(bx%3564,vtx->z(),weight);
290  if(m_runHisto2D) {
291  if(m_hvtxxvsbx2drun && *m_hvtxxvsbx2drun ) (*m_hvtxxvsbx2drun)->Fill(bx%3564,vtx->x(),weight);
292  if(m_hvtxyvsbx2drun && *m_hvtxyvsbx2drun ) (*m_hvtxyvsbx2drun)->Fill(bx%3564,vtx->y(),weight);
293  if(m_hvtxzvsbx2drun && *m_hvtxzvsbx2drun ) (*m_hvtxzvsbx2drun)->Fill(bx%3564,vtx->z(),weight);
294  }
295  }
296  }
297 
298  int nheavytracks = 0;
299  double sumpt2 = 0.;
300  double sumpt2heavy = 0.;
301 
302  for(reco::Vertex::trackRef_iterator trk=vtx->tracks_begin();trk!=vtx->tracks_end();++trk) {
303 
304  sumpt2 += (*trk)->pt()*(*trk)->pt();
305 
306  if(vtx->trackWeight(*trk) > m_weightThreshold) {
307  nheavytracks++;
308  sumpt2heavy += (*trk)->pt()*(*trk)->pt();
309  }
310 
311  m_hweights->Fill(vtx->trackWeight(*trk),weight);
312  m_haveweightvsvtxzchk->Fill(vtx->z(),vtx->trackWeight(*trk),weight);
313 
314  }
315 
316  m_hnheavytracks->Fill(nheavytracks,weight);
317  m_hsqsumptsq->Fill(sqrt(sumpt2),weight);
318  m_hsqsumptsqheavy->Fill(sqrt(sumpt2heavy),weight);
319 
320 
321  }
322 
323 
324  }
325 
326  m_hntruevtx->Fill(ntruevtx,weight);
327 
328  if(bxlumi >= 0.) {
329  m_hntruevtxvslumi->Fill(bxlumi,ntruevtx,weight);
330  m_hntruevtxvslumi2D->Fill(bxlumi,ntruevtx,weight);
331  }
332 
333  if(m_runHisto) {
334  if(m_runHistoProfile) {
335  if(m_hnvtxvsorbrun && *m_hnvtxvsorbrun ) (*m_hnvtxvsorbrun)->Fill(orbit,ntruevtx,weight);
336  }
337  if(m_runHistoBXProfile) {
338  if(m_hnvtxvsbxrun && *m_hnvtxvsbxrun ) (*m_hnvtxvsbxrun)->Fill(bx%3564,ntruevtx,weight);
340  if(m_hnvtxvsbxvslumirun && *m_hnvtxvsbxvslumirun && bxlumi >= 0.) (*m_hnvtxvsbxvslumirun)->Fill(bx%3564,bxlumi,ntruevtx,weight);
341  }
342  }
343  if(m_runHisto2D) {
344  if(m_hnvtxvsbxvsorbrun && *m_hnvtxvsbxvsorbrun ) (*m_hnvtxvsbxvsorbrun)->Fill(bx%3564,orbit,ntruevtx,weight);
346  if(ntruevtx < (*m_hnvtxvsorbrun2D)->GetYaxis()->GetXmax() && ntruevtx > (*m_hnvtxvsorbrun2D)->GetYaxis()->GetXmin()) {
347  (*m_hnvtxvsorbrun2D)->Fill(orbit,ntruevtx,weight);
348  }
349  }
350  }
351  }
352 
353 
354 }
355 
357 
358  // get luminosity
359 
362 
363  float bxlumi = -1.;
364 
365  if(ld.isValid()) {
366  if(ld->isValid()) {
367  bxlumi = ld->lumiValue(LumiDetails::kOCC1,iEvent.bunchCrossing())*6.37;
368  }
369  }
370 
371  fill(iEvent.orbitNumber(),iEvent.bunchCrossing(),bxlumi,vertices,weight);
372 
373 }
VertexHistogramMaker(edm::ConsumesCollector &&iC)
T getUntrackedParameter(std::string const &, T const &) const
TFileDirectory * m_currdir
const edm::ParameterSet m_histoParameters
bool getByToken(EDGetToken token, Handle< PROD > &result) const
TProfile2D ** m_hnvtxvsbxvsorbrun
RunHistogramManager m_rhm
int bunchCrossing() const
Definition: EventBase.h:65
TProfile2D ** m_hnvtxvsbxvslumirun
std::vector< Vertex > VertexCollection
collection of Vertex objects
Definition: VertexFwd.h:9
void fill(const edm::Event &iEvent, const reco::VertexCollection &vertices, const double weight=1.)
edm::EDGetTokenT< LumiDetails > m_lumiDetailsToken
TFileDirectory & tFileDirectory()
Definition: TFileService.h:42
TH1F ** makeTH1F(const char *name, const char *title, const unsigned int nbinx, const double xmin, const double xmax)
int iEvent
Definition: GenABIO.cc:230
m_rhm(consumesCollector())
T sqrt(T t)
Definition: SSEVec.h:18
TProfile ** makeTProfile(const char *name, const char *title, const unsigned int nbinx, const double xmin, const double xmax)
LuminosityBlock const & getLuminosityBlock() const
Definition: Event.h:85
T * make(const Args &...args) const
make new ROOT object
int orbitNumber() const
Definition: EventBase.h:66
bool isValid() const
Definition: HandleBase.h:75
void book(const std::string dirname="")
TFileDirectory mkdir(const std::string &dir, const std::string &descr="")
create a new subdirectory
Definition: TFileService.h:69
void beginRun(const edm::Run &iRun)
TProfile2D ** makeTProfile2D(const char *name, const char *title, const unsigned int nbinx, const double xmin, const double xmax, const unsigned int nbiny, const double ymin, const double ymax)
void beginRun(const edm::Run &iRun)
std::vector< TrackBaseRef >::const_iterator trackRef_iterator
The iteratator for the vector&lt;TrackRef&gt;
Definition: Vertex.h:37
TH2F ** makeTH2F(const char *name, const char *title, const unsigned int nbinx, const double xmin, const double xmax, const unsigned int nbiny, const double ymin, const double ymax)
volatile std::atomic< bool > shutdown_flag false
const unsigned int m_maxLS
Definition: Run.h:43
RunHistogramManager m_fhm