CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
BeamSpotHistogramMaker Class Reference

#include <BeamSpotHistogramMaker.h>

Public Member Functions

 BeamSpotHistogramMaker (edm::ConsumesCollector &&iC)
 
 BeamSpotHistogramMaker (const edm::ParameterSet &iConfig, edm::ConsumesCollector &&iC)
 
void beginRun (const unsigned int nrun)
 
void book (const std::string dirname="")
 
void fill (const unsigned int orbit, const reco::BeamSpot &bs)
 
 ~BeamSpotHistogramMaker ()
 

Private Attributes

TFileDirectory_currdir
 
TH1F ** _hbssigmaxrun
 
TProfile ** _hbssigmaxvsorbrun
 
TH1F ** _hbssigmayrun
 
TProfile ** _hbssigmayvsorbrun
 
TH1F ** _hbssigmazrun
 
TProfile ** _hbssigmazvsorbrun
 
TH1F ** _hbsxrun
 
TProfile ** _hbsxvsorbrun
 
TH1F ** _hbsyrun
 
TProfile ** _hbsyvsorbrun
 
TH1F ** _hbszrun
 
TProfile ** _hbszvsorbrun
 
const edm::ParameterSet _histoParameters
 
RunHistogramManager _rhm
 

Detailed Description

Definition at line 21 of file BeamSpotHistogramMaker.h.

Constructor & Destructor Documentation

◆ BeamSpotHistogramMaker() [1/2]

BeamSpotHistogramMaker::BeamSpotHistogramMaker ( edm::ConsumesCollector &&  iC)

Definition at line 11 of file BeamSpotHistogramMaker.cc.

12  : _currdir(nullptr), _histoParameters(), _rhm(iC) {}
const edm::ParameterSet _histoParameters

◆ BeamSpotHistogramMaker() [2/2]

BeamSpotHistogramMaker::BeamSpotHistogramMaker ( const edm::ParameterSet iConfig,
edm::ConsumesCollector &&  iC 
)

Definition at line 14 of file BeamSpotHistogramMaker.cc.

15  : _currdir(nullptr),
17  _rhm(iC) {}
T getUntrackedParameter(std::string const &, T const &) const
const edm::ParameterSet _histoParameters

◆ ~BeamSpotHistogramMaker()

BeamSpotHistogramMaker::~BeamSpotHistogramMaker ( )

Definition at line 19 of file BeamSpotHistogramMaker.cc.

References _currdir.

19 { delete _currdir; }

Member Function Documentation

◆ beginRun()

void BeamSpotHistogramMaker::beginRun ( const unsigned int  nrun)

Definition at line 84 of file BeamSpotHistogramMaker.cc.

References _currdir, _rhm, RunHistogramManager::beginRun(), and TFileService::tFileDirectory().

Referenced by AnotherBeamSpotAnalyzer::beginRun().

84  {
85  char runname[100];
86  sprintf(runname, "run_%d", nrun);
87 
88  TFileDirectory* currdir = _currdir;
89  if (currdir == nullptr) {
91  currdir = &(tfserv->tFileDirectory());
92  }
93 
94  _rhm.beginRun(nrun, *currdir);
95 
96  (*_hbsxrun)->GetXaxis()->SetTitle("X [cm]");
97  (*_hbsxrun)->GetYaxis()->SetTitle("Events");
98  (*_hbsyrun)->GetXaxis()->SetTitle("Y [cm]");
99  (*_hbsyrun)->GetYaxis()->SetTitle("Events");
100  (*_hbszrun)->GetXaxis()->SetTitle("Z [cm]");
101  (*_hbszrun)->GetYaxis()->SetTitle("Events");
102  (*_hbssigmaxrun)->GetXaxis()->SetTitle("sigmaX [cm]");
103  (*_hbssigmaxrun)->GetYaxis()->SetTitle("Events");
104  (*_hbssigmayrun)->GetXaxis()->SetTitle("sigmaY [cm]");
105  (*_hbssigmayrun)->GetYaxis()->SetTitle("Events");
106  (*_hbssigmazrun)->GetXaxis()->SetTitle("sigmaZ [cm]");
107  (*_hbssigmazrun)->GetYaxis()->SetTitle("Events");
108 
109  (*_hbsxvsorbrun)->GetXaxis()->SetTitle("time [orbit#]");
110  (*_hbsxvsorbrun)->GetYaxis()->SetTitle("X [cm]");
111  (*_hbsxvsorbrun)->SetCanExtend(TH1::kAllAxes);
112  (*_hbsyvsorbrun)->GetXaxis()->SetTitle("time [orbit#]");
113  (*_hbsyvsorbrun)->GetYaxis()->SetTitle("Y [cm]");
114  (*_hbsyvsorbrun)->SetCanExtend(TH1::kAllAxes);
115  (*_hbszvsorbrun)->GetXaxis()->SetTitle("time [orbit#]");
116  (*_hbszvsorbrun)->GetYaxis()->SetTitle("Z [cm]");
117  (*_hbszvsorbrun)->SetCanExtend(TH1::kAllAxes);
118  (*_hbssigmaxvsorbrun)->GetXaxis()->SetTitle("time [orbit#]");
119  (*_hbssigmaxvsorbrun)->GetYaxis()->SetTitle("sigmaX [cm]");
120  (*_hbssigmaxvsorbrun)->SetCanExtend(TH1::kAllAxes);
121  (*_hbssigmayvsorbrun)->GetXaxis()->SetTitle("time [orbit#]");
122  (*_hbssigmayvsorbrun)->GetYaxis()->SetTitle("sigmaY [cm]");
123  (*_hbssigmayvsorbrun)->SetCanExtend(TH1::kAllAxes);
124  (*_hbssigmazvsorbrun)->GetXaxis()->SetTitle("time [orbit#]");
125  (*_hbssigmazvsorbrun)->GetYaxis()->SetTitle("sigmaZ [cm]");
126  (*_hbssigmazvsorbrun)->SetCanExtend(TH1::kAllAxes);
127 }
TFileDirectory & tFileDirectory()
Definition: TFileService.h:42
void beginRun(const edm::Run &iRun)

◆ book()

void BeamSpotHistogramMaker::book ( const std::string  dirname = "")

Definition at line 21 of file BeamSpotHistogramMaker.cc.

References _currdir, _hbssigmaxrun, _hbssigmaxvsorbrun, _hbssigmayrun, _hbssigmayvsorbrun, _hbssigmazrun, _hbssigmazvsorbrun, _hbsxrun, _hbsxvsorbrun, _hbsyrun, _hbsyvsorbrun, _hbszrun, _hbszvsorbrun, _histoParameters, _rhm, BTVHLTOfflineSource_cfi::dirname, edm::ParameterSet::getUntrackedParameter(), RunHistogramManager::makeTH1F(), RunHistogramManager::makeTProfile(), TFileService::mkdir(), and TFileService::tFileDirectory().

Referenced by AnotherBeamSpotAnalyzer::AnotherBeamSpotAnalyzer().

21  {
23  TFileDirectory* currdir;
24 
25  if (!dirname.empty()) {
26  currdir = new TFileDirectory(tfserv->mkdir(dirname));
27  _currdir = currdir;
28  } else {
29  _currdir = &(tfserv->tFileDirectory());
30  }
31 
32  edm::LogInfo("HistogramBooking") << "BeamSpot histogram booking in directory " << dirname;
33 
34  _hbsxrun = _rhm.makeTH1F("bsxrun",
35  "BeamSpot X position",
36  _histoParameters.getUntrackedParameter<unsigned int>("nBinX", 200),
37  _histoParameters.getUntrackedParameter<double>("xMin", -1.),
38  _histoParameters.getUntrackedParameter<double>("xMax", 1.));
39 
40  _hbsyrun = _rhm.makeTH1F("bsyrun",
41  "BeamSpot Y position",
42  _histoParameters.getUntrackedParameter<unsigned int>("nBinY", 200),
43  _histoParameters.getUntrackedParameter<double>("yMin", -1.),
44  _histoParameters.getUntrackedParameter<double>("yMax", 1.));
45 
46  _hbszrun = _rhm.makeTH1F("bszrun",
47  "BeamSpot Z position",
48  _histoParameters.getUntrackedParameter<unsigned int>("nBinZ", 200),
49  _histoParameters.getUntrackedParameter<double>("zMin", -1.),
50  _histoParameters.getUntrackedParameter<double>("zMax", 1.));
51 
52  _hbssigmaxrun = _rhm.makeTH1F("bssigmaxrun",
53  "BeamSpot sigmaX",
54  _histoParameters.getUntrackedParameter<unsigned int>("nBinSigmaX", 200),
55  _histoParameters.getUntrackedParameter<double>("sigmaXMin", 0.),
56  _histoParameters.getUntrackedParameter<double>("sigmaXMax", 0.025));
57 
58  _hbssigmayrun = _rhm.makeTH1F("bssigmayrun",
59  "BeamSpot sigmaY",
60  _histoParameters.getUntrackedParameter<unsigned int>("nBinSigmaY", 200),
61  _histoParameters.getUntrackedParameter<double>("sigmaYMin", 0.),
62  _histoParameters.getUntrackedParameter<double>("sigmaYMax", 0.025));
63 
64  _hbssigmazrun = _rhm.makeTH1F("bssigmazrun",
65  "BeamSpot sigmaZ",
66  _histoParameters.getUntrackedParameter<unsigned int>("nBinSigmaZ", 200),
67  _histoParameters.getUntrackedParameter<double>("sigmaZMin", 0.),
68  _histoParameters.getUntrackedParameter<double>("sigmaZMax", 15.));
69 
71  _rhm.makeTProfile("bsxvsorbrun", "BeamSpot X position vs orbit number", 1600, 0.5, 1600. * 16384 + 0.5);
73  _rhm.makeTProfile("bsyvsorbrun", "BeamSpot Y position vs orbit number", 1600, 0.5, 1600. * 16384 + 0.5);
75  _rhm.makeTProfile("bszvsorbrun", "BeamSpot Z position vs orbit number", 1600, 0.5, 1600. * 16384 + 0.5);
77  _rhm.makeTProfile("bssigmaxvsorbrun", "BeamSpot sigmaX vs orbit number", 1600, 0.5, 1600. * 16384 + 0.5);
79  _rhm.makeTProfile("bssigmayvsorbrun", "BeamSpot sigmaY vs orbit number", 1600, 0.5, 1600. * 16384 + 0.5);
81  _rhm.makeTProfile("bssigmazvsorbrun", "BeamSpot sigmaZ vs orbit number", 1600, 0.5, 1600. * 16384 + 0.5);
82 }
T getUntrackedParameter(std::string const &, T const &) const
TFileDirectory & tFileDirectory()
Definition: TFileService.h:42
TH1F ** makeTH1F(const char *name, const char *title, const unsigned int nbinx, const double xmin, const double xmax)
TProfile ** makeTProfile(const char *name, const char *title, const unsigned int nbinx, const double xmin, const double xmax)
Log< level::Info, false > LogInfo
TFileDirectory mkdir(const std::string &dir, const std::string &descr="")
create a new subdirectory
Definition: TFileService.h:69
const edm::ParameterSet _histoParameters

◆ fill()

void BeamSpotHistogramMaker::fill ( const unsigned int  orbit,
const reco::BeamSpot bs 
)

Definition at line 129 of file BeamSpotHistogramMaker.cc.

References _hbssigmaxrun, _hbssigmaxvsorbrun, _hbssigmayrun, _hbssigmayvsorbrun, _hbssigmazrun, _hbssigmazvsorbrun, _hbsxrun, _hbsxvsorbrun, _hbsyrun, _hbsyvsorbrun, _hbszrun, _hbszvsorbrun, and cms::cuda::bs.

Referenced by AnotherBeamSpotAnalyzer::analyze().

129  {
130  if (_hbsxrun && *_hbsxrun)
131  (*_hbsxrun)->Fill(bs.x0());
133  (*_hbsxvsorbrun)->Fill(orbit, bs.x0());
134 
135  if (_hbsyrun && *_hbsyrun)
136  (*_hbsyrun)->Fill(bs.y0());
138  (*_hbsyvsorbrun)->Fill(orbit, bs.y0());
139 
140  if (_hbszrun && *_hbszrun)
141  (*_hbszrun)->Fill(bs.z0());
143  (*_hbszvsorbrun)->Fill(orbit, bs.z0());
144 
146  (*_hbssigmaxrun)->Fill(bs.BeamWidthX());
148  (*_hbssigmayrun)->Fill(bs.BeamWidthY());
150  (*_hbssigmazrun)->Fill(bs.sigmaZ());
152  (*_hbssigmaxvsorbrun)->Fill(orbit, bs.BeamWidthX());
154  (*_hbssigmayvsorbrun)->Fill(orbit, bs.BeamWidthY());
156  (*_hbssigmazvsorbrun)->Fill(orbit, bs.sigmaZ());
157 }

Member Data Documentation

◆ _currdir

TFileDirectory* BeamSpotHistogramMaker::_currdir
private

Definition at line 33 of file BeamSpotHistogramMaker.h.

Referenced by beginRun(), book(), and ~BeamSpotHistogramMaker().

◆ _hbssigmaxrun

TH1F** BeamSpotHistogramMaker::_hbssigmaxrun
private

Definition at line 40 of file BeamSpotHistogramMaker.h.

Referenced by book(), and fill().

◆ _hbssigmaxvsorbrun

TProfile** BeamSpotHistogramMaker::_hbssigmaxvsorbrun
private

Definition at line 46 of file BeamSpotHistogramMaker.h.

Referenced by book(), and fill().

◆ _hbssigmayrun

TH1F** BeamSpotHistogramMaker::_hbssigmayrun
private

Definition at line 41 of file BeamSpotHistogramMaker.h.

Referenced by book(), and fill().

◆ _hbssigmayvsorbrun

TProfile** BeamSpotHistogramMaker::_hbssigmayvsorbrun
private

Definition at line 47 of file BeamSpotHistogramMaker.h.

Referenced by book(), and fill().

◆ _hbssigmazrun

TH1F** BeamSpotHistogramMaker::_hbssigmazrun
private

Definition at line 42 of file BeamSpotHistogramMaker.h.

Referenced by book(), and fill().

◆ _hbssigmazvsorbrun

TProfile** BeamSpotHistogramMaker::_hbssigmazvsorbrun
private

Definition at line 48 of file BeamSpotHistogramMaker.h.

Referenced by book(), and fill().

◆ _hbsxrun

TH1F** BeamSpotHistogramMaker::_hbsxrun
private

Definition at line 37 of file BeamSpotHistogramMaker.h.

Referenced by book(), and fill().

◆ _hbsxvsorbrun

TProfile** BeamSpotHistogramMaker::_hbsxvsorbrun
private

Definition at line 43 of file BeamSpotHistogramMaker.h.

Referenced by book(), and fill().

◆ _hbsyrun

TH1F** BeamSpotHistogramMaker::_hbsyrun
private

Definition at line 38 of file BeamSpotHistogramMaker.h.

Referenced by book(), and fill().

◆ _hbsyvsorbrun

TProfile** BeamSpotHistogramMaker::_hbsyvsorbrun
private

Definition at line 44 of file BeamSpotHistogramMaker.h.

Referenced by book(), and fill().

◆ _hbszrun

TH1F** BeamSpotHistogramMaker::_hbszrun
private

Definition at line 39 of file BeamSpotHistogramMaker.h.

Referenced by book(), and fill().

◆ _hbszvsorbrun

TProfile** BeamSpotHistogramMaker::_hbszvsorbrun
private

Definition at line 45 of file BeamSpotHistogramMaker.h.

Referenced by book(), and fill().

◆ _histoParameters

const edm::ParameterSet BeamSpotHistogramMaker::_histoParameters
private

Definition at line 34 of file BeamSpotHistogramMaker.h.

Referenced by book().

◆ _rhm

RunHistogramManager BeamSpotHistogramMaker::_rhm
private

Definition at line 36 of file BeamSpotHistogramMaker.h.

Referenced by beginRun(), and book().