32 #include "HepMC/WeightContainer.h" 33 #include "HepMC/GenEvent.h" 49 nbinsMass_(pset.getUntrackedParameter<unsigned
int>(
"nbinsMass")),
50 nbinsPt_(pset.getUntrackedParameter<unsigned
int>(
"nbinsPt")),
51 nbinsAng_(pset.getUntrackedParameter<unsigned
int>(
"nbinsAng")),
52 massMax_(pset.getUntrackedParameter<double>(
"massMax")),
53 ptMax_(pset.getUntrackedParameter<double>(
"ptMax")),
54 angMax_(pset.getUntrackedParameter<double>(
"angMax")),
55 accPtMin_(pset.getUntrackedParameter<double>(
"accPtMin")),
56 accMassMin_(pset.getUntrackedParameter<double>(
"accMassMin")),
57 accMassMax_(pset.getUntrackedParameter<double>(
"accMassMax")),
58 accEtaMin_(pset.getUntrackedParameter<double>(
"accEtaMin")),
59 accEtaMax_(pset.getUntrackedParameter<double>(
"accEtaMax")),
61 cout <<
">>> Z Histogrammer constructor" << endl;
65 h_nZ_ = ZHisto.
make<TH1F>(
"ZNumber",
"number of Z particles", 11, -0.5, 10.5);
91 cout <<
">>> Z Histogrammer analyze" << endl;
107 weight > 0 ? weight = 1. : weight = -1.;
110 std::vector<GenParticle>
muons;
113 for (
unsigned int i = 0;
i < gen->size(); ++
i) {
118 cout <<
"I'm getting a muon \n" 120 <<
"muMC.numberOfMothers() " << muMC.
numberOfMothers() <<
"\n the first mother has pdgId " 123 <<
"\n the first grandma has pdgId " << muMC.
mother()->
mother()->
pdgId() << endl;
125 muons.push_back(muMC);
131 for (
unsigned int i = 0;
i < gen->size(); ++
i) {
135 cout <<
"I'm getting a muon \n" 137 <<
"muMC.numberOfMothers() " << muMC.
numberOfMothers() <<
"\n the first mother has pdgId " 140 <<
"\n the first grandma has pdgId " << muMC.
mother()->
mother()->
pdgId() << endl;
142 muons.push_back(muMC);
148 cout <<
"finally I selected " << muons.size() <<
" muons" << endl;
155 double inv_mass = 0.0;
158 double Ztheta_ = 0.0;
160 double Zrapidity_ = 0.0;
162 if (muons.size() > 1) {
163 if (muons[0].mother()->mother()->pdgId() == 23 && muons[1].mother()->mother()->pdgId() == 23)
167 tot_momentum += mom2;
168 inv_mass =
sqrt(tot_momentum.mass2());
169 Zpt_ = tot_momentum.pt();
170 Zeta_ = tot_momentum.eta();
171 Ztheta_ = tot_momentum.theta();
172 Zphi_ = tot_momentum.phi();
173 Zrapidity_ = tot_momentum.Rapidity();
177 double weight_sign = (weight > 0) ? 1. : -1.;
179 h_mZMC_->Fill(inv_mass, weight_sign);
186 double pt1 = muons[0].pt();
187 double pt2 = muons[1].pt();
188 double eta1 = muons[0].eta();
189 double eta2 = muons[1].eta();
192 hardpt->Fill(pt1, weight_sign);
193 softpt->Fill(pt2, weight_sign);
194 hardeta->Fill(eta1, weight_sign);
195 softeta->Fill(eta2, weight_sign);
197 hardpt->Fill(pt2, weight_sign);
198 softpt->Fill(pt1, weight_sign);
199 hardeta->Fill(eta2, weight_sign);
200 softeta->Fill(eta1, weight_sign);
211 cout <<
" number of events accepted :" <<
nAcc_ << endl;
212 cout <<
" number of total events :" <<
h_mZMC_->GetEntries() << endl;
214 double eff = (double)
nAcc_ / (
double)
h_mZMC_->GetEntries();
215 double err =
sqrt(eff * (1. - eff) / (
double)
h_mZMC_->GetEntries());
216 cout <<
" geometric acceptance: " << eff <<
"+/-" << err << endl;
std::vector< GenParticle > GenParticleCollection
collection of GenParticles
int pdgId() const final
PDG identifier.
void analyze(const edm::Event &event, const edm::EventSetup &setup) override
size_t numberOfMothers() const override
number of mothers
virtual const Candidate * mother(size_type i=0) const =0
return pointer to mother
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
XYZTLorentzVectorD XYZTLorentzVector
Lorentz vector with cylindrical internal representation using pseudorapidity.
#define DEFINE_FWK_MODULE(type)
edm::EDGetTokenT< double > weightsToken_
virtual int pdgId() const =0
PDG identifier.
virtual size_type numberOfMothers() const =0
number of mothers (zero or one in most of but not all the cases)
Abs< T >::type abs(const T &t)
ZLONLOHistogrammer(const edm::ParameterSet &pset)
T * make(const Args &...args) const
make new ROOT object
unsigned int nBothMuHasZHasGrandMa_
def gen(fragment, howMuch)
Production test section ####.
TFileDirectory mkdir(const std::string &dir, const std::string &descr="")
create a new subdirectory
edm::EDGetTokenT< reco::GenParticleCollection > genToken_
int status() const final
status word
const Candidate * mother(size_type=0) const override
return mother at a given position, i = 0, ... numberOfMothers() - 1 (read only mode) ...