CMS 3D CMS Logo

CTPPSHepMCDistributionPlotter.cc
Go to the documentation of this file.
1 /****************************************************************************
2  * Authors:
3  * Jan Kašpar
4  ****************************************************************************/
5 
10 
13 
15 
17 
19 
20 #include "TFile.h"
21 #include "TH1D.h"
22 
23 #include <string>
24 
25 //----------------------------------------------------------------------------------------------------
26 
28 public:
30 
31  static void fillDescriptions(edm::ConfigurationDescriptions &descriptions);
32 
33 private:
34  void analyze(const edm::Event &, const edm::EventSetup &) override;
35  void endJob() override;
36 
38 
42  const bool useNewLHCInfo_;
43 
45 
46  std::unique_ptr<TH1D> h_vtx_x_, h_vtx_y_, h_vtx_z_, h_vtx_t_;
47  std::unique_ptr<TH1D> h_xi_, h_th_x_, h_th_y_;
48 };
49 
50 //----------------------------------------------------------------------------------------------------
51 
52 using namespace std;
53 using namespace edm;
54 using namespace HepMC;
55 
56 //----------------------------------------------------------------------------------------------------
57 
59  : tokenHepMC_(consumes<edm::HepMCProduct>(iConfig.getParameter<edm::InputTag>("tagHepMC"))),
60 
61  lhcInfoToken_(esConsumes(ESInputTag("", iConfig.getParameter<std::string>("lhcInfoLabel")))),
62  lhcInfoPerLSToken_(esConsumes(ESInputTag("", iConfig.getParameter<std::string>("lhcInfoPerLSLabel")))),
63  lhcInfoPerFillToken_(esConsumes(ESInputTag("", iConfig.getParameter<std::string>("lhcInfoPerFillLabel")))),
64  useNewLHCInfo_(iConfig.getParameter<bool>("useNewLHCInfo")),
65 
66  outputFile_(iConfig.getParameter<string>("outputFile")),
67 
68  h_vtx_x_(new TH1D("h_vtx_x", ";vtx_x (mm)", 100, 0., 0.)),
69  h_vtx_y_(new TH1D("h_vtx_y", ";vtx_y (mm)", 100, 0., 0.)),
70  h_vtx_z_(new TH1D("h_vtx_z", ";vtx_z (mm)", 100, 0., 0.)),
71  h_vtx_t_(new TH1D("h_vtx_t", ";vtx_t (mm)", 100, 0., 0.)),
72 
73  h_xi_(new TH1D("h_xi", ";#xi", 100, 0., 0.30)),
74  h_th_x_(new TH1D("h_th_x", ";#theta^{*}_{x}", 100, -300E-6, +300E-6)),
75  h_th_y_(new TH1D("h_th_y", ";#theta^{*}_{y}", 100, -300E-6, +300E-6)) {}
76 
77 //----------------------------------------------------------------------------------------------------
78 
81 
82  desc.add<std::string>("lhcInfoLabel", "")->setComment("label of the LHCInfo record");
83  desc.add<std::string>("lhcInfoPerLSLabel", "")->setComment("label of the LHCInfoPerLS record");
84  desc.add<std::string>("lhcInfoPerFillLabel", "")->setComment("label of the LHCInfoPerFill record");
85  desc.add<bool>("useNewLHCInfo", false)->setComment("flag whether to use new LHCInfoPer* records or old LHCInfo");
86 
87  desc.add<std::string>("outputFile", "")->setComment("output file");
88 
89  descriptions.add("ctppsHepMCDistributionPlotterDefault", desc);
90 }
91 
93  // get conditions
95 
96  // get input
98  iEvent.getByToken(tokenHepMC_, hHepMC);
99  HepMC::GenEvent *hepMCEvent = (HepMC::GenEvent *)hHepMC->GetEvent();
100 
101  // plot vertices
102  for (HepMC::GenEvent::vertex_iterator vit = hepMCEvent->vertices_begin(); vit != hepMCEvent->vertices_end(); ++vit) {
103  const auto pos = (*vit)->position();
104  h_vtx_x_->Fill(pos.x());
105  h_vtx_y_->Fill(pos.y());
106  h_vtx_z_->Fill(pos.z());
107  h_vtx_t_->Fill(pos.t());
108  }
109 
110  // extract protons
111  for (auto it = hepMCEvent->particles_begin(); it != hepMCEvent->particles_end(); ++it) {
112  const auto &part = *it;
113 
114  // accept only stable non-beam protons
115  if (part->pdg_id() != 2212)
116  continue;
117 
118  if (part->status() != 1)
119  continue;
120 
121  if (part->is_beam())
122  continue;
123 
124  const auto &mom = part->momentum();
125  const double p_nom = lhcInfoCombined.energy;
126 
127  if (mom.rho() / p_nom < 0.7)
128  continue;
129 
130  const double xi_simu = (p_nom - mom.e()) / p_nom;
131  const double th_x_simu = mom.x() / mom.rho();
132  const double th_y_simu = mom.y() / mom.rho();
133 
134  h_xi_->Fill(xi_simu);
135  h_th_x_->Fill(th_x_simu);
136  h_th_y_->Fill(th_y_simu);
137  }
138 }
139 
140 //----------------------------------------------------------------------------------------------------
141 
143  auto f_out = std::make_unique<TFile>(outputFile_.c_str(), "recreate");
144 
145  h_vtx_x_->Write();
146  h_vtx_y_->Write();
147  h_vtx_z_->Write();
148  h_vtx_t_->Write();
149 
150  h_xi_->Write();
151  h_th_x_->Write();
152  h_th_y_->Write();
153 }
154 
155 //----------------------------------------------------------------------------------------------------
156 
ESGetTokenH3DDVariant esConsumes(std::string const &Record, edm::ConsumesCollector &)
Definition: DeDxTools.cc:283
const edm::EDGetTokenT< edm::HepMCProduct > tokenHepMC_
const edm::ESGetToken< LHCInfoPerFill, LHCInfoPerFillRcd > lhcInfoPerFillToken_
CTPPSHepMCDistributionPlotter(const edm::ParameterSet &)
int iEvent
Definition: GenABIO.cc:224
const edm::ESGetToken< LHCInfo, LHCInfoRcd > lhcInfoToken_
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
const edm::ESGetToken< LHCInfoPerLS, LHCInfoPerLSRcd > lhcInfoPerLSToken_
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
const HepMC::GenEvent * GetEvent() const
Definition: HepMCProduct.h:37
part
Definition: HCALResponse.h:20
void add(std::string const &label, ParameterSetDescription const &psetDescription)
void analyze(const edm::Event &, const edm::EventSetup &) override
HLT enums.
VertexRefVector::iterator vertex_iterator
iterator over a vector of references to Vertex objects in the same collection
Definition: VertexFwd.h:19