CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ZMassHistogrammer.cc
Go to the documentation of this file.
3 #include "TH1.h"
4 
6 public:
8 private:
9  virtual void analyze(const edm::Event& event, const edm::EventSetup& setup);
11  TH1F *h_mZ_, *h_mZMC_;
12 };
13 
23 #include <iostream>
24 
25 using namespace std;
26 using namespace reco;
27 using namespace edm;
28 
30  z_(pset.getParameter<InputTag>("z")),
31  gen_(pset.getParameter<InputTag>("gen")) {
32  cout << ">>> Z Mass constructor" << endl;
34  h_mZ_ = fs->make<TH1F>("ZMass", "Z mass (GeV/c^{2})", 100, 0, 200);
35  h_mZMC_ = fs->make<TH1F>("ZMCMass", "Z MC mass (GeV/c^{2})", 100, 0, 200);
36 }
37 
39  cout << ">>> Z Mass analyze" << endl;
42  event.getByLabel(z_, z);
43  event.getByLabel(gen_, gen);
44  for(unsigned int i = 0; i < z->size(); ++i) {
45  const Candidate &zCand = (*z)[i];
46  h_mZ_->Fill(zCand.mass());
47  }
48  for(unsigned int i = 0; i < gen->size(); ++i) {
49  const Candidate &genCand = (*gen)[i];
50  if((genCand.pdgId() == 23) && (genCand.status() == 2)) //this is an intermediate Z0
51  cout << ">>> intermediate Z0 found, with " << genCand.numberOfDaughters()
52  << " daughters" << endl;
53  if((genCand.pdgId() == 23)&&(genCand.status() == 3)) { //this is a Z0
54  cout << ">>> Z0 found, with " << genCand.numberOfDaughters()
55  << " daughters" << endl;
56  h_mZMC_->Fill(genCand.mass());
57  if(genCand.numberOfDaughters() == 3) {//Z0 decays in mu+ mu-, the 3rd daughter is the same Z0
58  const Candidate * dauGen0 = genCand.daughter(0);
59  const Candidate * dauGen1 = genCand.daughter(1);
60  const Candidate * dauGen2 = genCand.daughter(2);
61  cout << ">>> daughter MC 0 PDG Id " << dauGen0->pdgId()
62  << ", status " << dauGen0->status()
63  << ", charge " << dauGen0->charge()
64  << endl;
65  cout << ">>> daughter MC 1 PDG Id " << dauGen1->pdgId()
66  << ", status " << dauGen1->status()
67  << ", charge " << dauGen1->charge()
68  << endl;
69  cout << ">>> daughter MC 2 PDG Id " << dauGen2->pdgId()
70  << ", status " << dauGen2->status()
71  << ", charge " << dauGen2->charge() << endl;
72  }
73  }
74  }
75 }
76 
78 
80 
int i
Definition: DBlmapReader.cc:9
virtual const Candidate * daughter(size_type i) const =0
return daughter at a given position, i = 0, ... numberOfDaughters() - 1 (read only mode) ...
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
virtual double mass() const =0
mass
virtual int status() const =0
status word
double double double z
virtual size_type numberOfDaughters() const =0
number of daughters
virtual int charge() const =0
electric charge
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger but the state exists so we define the behavior If all triggers are the negative crieriion will lead to accepting the event(this again matches the behavior of"!*"before the partial wildcard feature was incorporated).The per-event"cost"of each negative criterion with multiple relevant triggers is about the same as!*was in the past
virtual void analyze(const edm::Event &event, const edm::EventSetup &setup)
virtual int pdgId() const =0
PDG identifier.
ZMassHistogrammer(const edm::ParameterSet &pset)
T * make() const
make new ROOT object
tuple cout
Definition: gather_cfg.py:121
void setup(std::vector< TH2F > &depth, std::string name, std::string units="")