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::fill
void fill(const unsigned int orbit, const reco::BeamSpot &bs)
Definition: BeamSpotHistogramMaker.cc:127
BeamSpotHistogramMaker::_hbszvsorbrun
TProfile ** _hbszvsorbrun
Definition: BeamSpotHistogramMaker.h:45
MessageLogger.h
edm
HLT enums.
Definition: AlignableModifier.h:19
BeamSpotHistogramMaker::_hbssigmazvsorbrun
TProfile ** _hbssigmazvsorbrun
Definition: BeamSpotHistogramMaker.h:48
TFileService::tFileDirectory
TFileDirectory & tFileDirectory()
Definition: TFileService.h:42
BeamSpotHistogramMaker::_hbssigmazrun
TH1F ** _hbssigmazrun
Definition: BeamSpotHistogramMaker.h:42
BeamSpotHistogramMaker::_hbssigmayrun
TH1F ** _hbssigmayrun
Definition: BeamSpotHistogramMaker.h:41
edm::ParameterSet::getUntrackedParameter
T getUntrackedParameter(std::string const &, T const &) const
TFileDirectory
Definition: TFileDirectory.h:24
edm::LogInfo
Log< level::Info, false > LogInfo
Definition: MessageLogger.h:125
BeamSpotHistogramMaker::~BeamSpotHistogramMaker
~BeamSpotHistogramMaker()
Definition: BeamSpotHistogramMaker.cc:19
BeamSpotHistogramMaker::_histoParameters
const edm::ParameterSet _histoParameters
Definition: BeamSpotHistogramMaker.h:34
BTVHLTOfflineSource_cfi.dirname
dirname
Definition: BTVHLTOfflineSource_cfi.py:7
cms::cuda::bs
bs
Definition: HistoContainer.h:127
BeamSpot.h
BeamSpotHistogramMaker::_currdir
TFileDirectory * _currdir
Definition: BeamSpotHistogramMaker.h:33
Service.h
BeamSpotHistogramMaker::_hbsxrun
TH1F ** _hbsxrun
Definition: BeamSpotHistogramMaker.h:37
BeamSpotHistogramMaker::_rhm
RunHistogramManager _rhm
Definition: BeamSpotHistogramMaker.h:36
reco::BeamSpot
Definition: BeamSpot.h:21
BeamSpotHistogramMaker::_hbssigmayvsorbrun
TProfile ** _hbssigmayvsorbrun
Definition: BeamSpotHistogramMaker.h:47
BeamSpotHistogramMaker::book
void book(const std::string dirname="")
Definition: BeamSpotHistogramMaker.cc:21
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
TFileService.h
TFileService::mkdir
TFileDirectory mkdir(const std::string &dir, const std::string &descr="")
create a new subdirectory
Definition: TFileService.h:69
RunHistogramManager::makeTH1F
TH1F ** makeTH1F(const char *name, const char *title, const unsigned int nbinx, const double xmin, const double xmax)
Definition: RunHistogramManager.cc:33
edm::ParameterSet
Definition: ParameterSet.h:47
ParameterSet
Definition: Functions.h:16
BeamSpotHistogramMaker::_hbsyrun
TH1F ** _hbsyrun
Definition: BeamSpotHistogramMaker.h:38
RunHistogramManager::beginRun
void beginRun(const edm::Run &iRun)
Definition: RunHistogramManager.cc:101
edm::Service< TFileService >
BeamSpotHistogramMaker::_hbssigmaxrun
TH1F ** _hbssigmaxrun
Definition: BeamSpotHistogramMaker.h:40
BeamSpotHistogramMaker::BeamSpotHistogramMaker
BeamSpotHistogramMaker(edm::ConsumesCollector &&iC)
Definition: BeamSpotHistogramMaker.cc:11
BeamSpotHistogramMaker::_hbsyvsorbrun
TProfile ** _hbsyvsorbrun
Definition: BeamSpotHistogramMaker.h:44
BeamSpotHistogramMaker::_hbssigmaxvsorbrun
TProfile ** _hbssigmaxvsorbrun
Definition: BeamSpotHistogramMaker.h:46
BeamSpotHistogramMaker::beginRun
void beginRun(const unsigned int nrun)
Definition: BeamSpotHistogramMaker.cc:82
BeamSpotHistogramMaker::_hbszrun
TH1F ** _hbszrun
Definition: BeamSpotHistogramMaker.h:39
BeamSpotHistogramMaker::_hbsxvsorbrun
TProfile ** _hbsxvsorbrun
Definition: BeamSpotHistogramMaker.h:43
ParameterSet.h
edm::ConsumesCollector
Definition: ConsumesCollector.h:45
BeamSpotHistogramMaker.h
RunHistogramManager::makeTProfile
TProfile ** makeTProfile(const char *name, const char *title, const unsigned int nbinx, const double xmin, const double xmax)
Definition: RunHistogramManager.cc:52