CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
BasicMuonAnalyzer.cc
Go to the documentation of this file.
5 
6 
9  edm::BasicAnalyzer::BasicAnalyzer(cfg, fs),
10  muons_(cfg.getParameter<edm::InputTag>("muons"))
11 {
12  hists_["muonPt" ] = fs.make<TH1F>("muonPt" , "pt" , 100, 0., 300.);
13  hists_["muonEta" ] = fs.make<TH1F>("muonEta" , "eta" , 100, -3., 3.);
14  hists_["muonPhi" ] = fs.make<TH1F>("muonPhi" , "phi" , 100, -5., 5.);
15  hists_["mumuMass"] = fs.make<TH1F>("mumuMass", "mass", 90, 30., 120.);
16 }
17 
19 void
21 {
22  // define what muon you are using; this is necessary as FWLite is not
23  // capable of reading edm::Views
24  using reco::Muon;
25 
26  // Handle to the muon collection
28  event.getByLabel(muons_, muons);
29 
30  // loop muon collection and fill histograms
31  for(std::vector<Muon>::const_iterator mu1=muons->begin(); mu1!=muons->end(); ++mu1){
32  hists_["muonPt" ]->Fill( mu1->pt () );
33  hists_["muonEta"]->Fill( mu1->eta() );
34  hists_["muonPhi"]->Fill( mu1->phi() );
35  if( mu1->pt()>20 && fabs(mu1->eta())<2.1 ){
36  for(std::vector<Muon>::const_iterator mu2=muons->begin(); mu2!=muons->end(); ++mu2){
37  if(mu2>mu1){ // prevent double conting
38  if( mu1->charge()*mu2->charge()<0 ){ // check only muon pairs of unequal charge
39  if( mu2->pt()>20 && fabs(mu2->eta())<2.1 ){
40  hists_["mumuMass"]->Fill( (mu1->p4()+mu2->p4()).mass() );
41  }
42  }
43  }
44  }
45  }
46  }
47 }
std::map< std::string, TH1 * > hists_
histograms
BasicMuonAnalyzer(const edm::ParameterSet &cfg, TFileDirectory &fs)
default constructor
Abstract base class for FWLite and EDM friendly analyzers.
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
void analyze(const edm::EventBase &event)
everything that needs to be done during the event loop
tuple muons
Definition: patZpeak.py:38
tuple mass
Definition: scaleCards.py:27
T * make() const
make new ROOT object
edm::InputTag muons_
input tag for mouns