CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
MuonAnalyzer.cc
Go to the documentation of this file.
1 
16 
17 #include "TH1I.h"
18 #include "TH1F.h"
19 #include "TH2F.h"
20 
22 public:
25 
27  ~ExampleMuonAnalyzer() override;
28 
29  // Operations
30 
31  void analyze(const edm::Event &event, const edm::EventSetup &eventSetup) override;
32 
33  void beginJob() override;
34  void endJob() override;
35 
36 protected:
37 private:
39 
40  // Histograms
41  TH1I *hNMuons;
42  TH1F *hPtRec;
43  TH2F *hPtReso;
44  TH1F *hEHcal;
45 
46  TH1I *hMuonType;
47  TH1F *hPtSTATKDiff;
48 
49  // ID
53  TH1I *hMuIdAlgo;
54 
55  // Isolation
58 
59  TH1F *h4MuInvMass;
60 };
61 
62 using namespace std;
63 using namespace edm;
64 
67  theMuonToken = consumes<pat::MuonCollection>(pset.getParameter<InputTag>("MuonCollection"));
68 }
69 
72 
74  // Book histograms
75  edm::Service<TFileService> fileService;
76  hPtRec = fileService->make<TH1F>("pT", "p_{T}^{rec}", 250, 0, 120);
77  hPtReso = fileService->make<TH2F>("pT_Reso", "(p_{T}^{rec}-p_{T}^{sim})/p_{T}^{sim}", 250, 0, 120, 100, -0.2, 0.2);
78  hNMuons = fileService->make<TH1I>("NMuons", "Number of muons per event", 20, 0, 20);
79 
80  hEHcal = fileService->make<TH1F>("EHCal", "Energy deposit in HCAL", 100, 0, 10);
81 
82  // ID
83  hMuonType = fileService->make<TH1I>("MuonType", "Type of Muons", 5, 1, 6);
84  hPtSTATKDiff = fileService->make<TH1F>("DiffPt_STA_TK", "p^{TK}_{T}-p^{STA}_T", 200, -50, 50);
85  hMuCaloCompatibility = fileService->make<TH1F>("CaloCompatibility", "Muon HP using Calorimeters only", 100, 0, 1);
86  hMuSegCompatibility = fileService->make<TH1F>("SegmentCompatibility", "Muon HP using segments only", 100, 0, 1);
87  hChamberMatched = fileService->make<TH1I>("NumMatchedChamber", "Number of matched chambers", 7, 0, 7);
88  hMuIdAlgo = fileService->make<TH1I>("MuonIDSelectors", "Results of muon id selectors", 13, 0, 13);
89 
90  // Isolation
91  hMuIso03SumPt = fileService->make<TH1F>("MuIso03SumPt", "Isolation #Delta(R)=0.3: SumPt", 200, 0, 10);
92  hMuIso03CaloComb =
93  fileService->make<TH1F>("MuIso03CaloComb", "Isolation #Delta(R)=0.3: 1.2*ECAL+0.8HCAL", 200, 0, 10);
94 
95  // 4Mu invariant mass
96  h4MuInvMass = fileService->make<TH1F>("InvMass4MuSystem", "Invariant mass of the 4 muons system", 200, 0, 500);
97 }
98 
100 
101 void ExampleMuonAnalyzer::analyze(const Event &event, const EventSetup &eventSetup) {
102  // Get the Muon collection
104  event.getByToken(theMuonToken, muons);
105 
106  // How many muons in the event?
107  hNMuons->Fill(muons->size());
108 
110 
111  // Let's look inside the muon collection.
112  for (pat::MuonCollection::const_iterator muon = muons->begin(); muon != muons->end(); ++muon) {
113  // pT spectra of muons
114  hPtRec->Fill(muon->pt());
115 
116  // what is the resolution in pt? Easy! We have the association with generated information
117  // cout<<muon->pt()<<" "<<muon->genParticle()->pt()<<endl;
118  if (muon->genLepton() != nullptr) {
119  double reso = (muon->pt() - muon->genLepton()->pt()) / muon->genLepton()->pt();
120  hPtReso->Fill(muon->genLepton()->pt(), reso);
121  }
122 
123  // What is the energy deposit in HCal?
124  if (muon->isEnergyValid())
125  hEHcal->Fill(muon->calEnergy().had);
126 
127  // Which type of muons in the collection?
128  if (muon->isStandAloneMuon())
129  if (muon->isGlobalMuon())
130  if (muon->isTrackerMuon())
131  hMuonType->Fill(1); // STA + GLB + TM
132  else
133  hMuonType->Fill(2); // STA + GLB
134  else if (muon->isTrackerMuon())
135  hMuonType->Fill(3); // STA + TM
136  else
137  hMuonType->Fill(5); // STA
138  else if (muon->isTrackerMuon())
139  hMuonType->Fill(4); // TM
140 
141  // ...mmm I want to study the relative resolution of the STA track with respect to the Tracker track.
142  // or I want to look at a track stab
143  if (muon->isGlobalMuon()) {
144  double diff = muon->innerTrack()->pt() - muon->standAloneMuon()->pt();
145  hPtSTATKDiff->Fill(diff);
146  }
147 
148  // Muon ID quantities
149 
150  // Muon in CMS are usually MIP. What is the compatibility of a muon HP using only claorimeters?
151  if (muon->isCaloCompatibilityValid())
152  hMuCaloCompatibility->Fill(muon->caloCompatibility());
153 
154  // The muon system can also be used just as only for ID. What is the compatibility of a muon HP using only calorimeters?
155  hMuSegCompatibility->Fill(muon::segmentCompatibility(*muon));
156 
157  // How many chambers have been associated to a muon track?
158  hChamberMatched->Fill(muon->numberOfChambers());
159  // If you look at MuonSegmentMatcher class you will see a lot of interesting quantities to look at!
160  // you can get the list of matched info using matches()
161 
162  // Muon ID selection. As described in AN-2008/098
163  if (muon::isGoodMuon(*muon, muon::All)) // dummy options - always true
164  hMuIdAlgo->Fill(0);
165  if (muon::isGoodMuon(*muon, muon::AllStandAloneMuons)) // checks isStandAloneMuon flag
166  hMuIdAlgo->Fill(1);
167  if (muon::isGoodMuon(*muon, muon::AllTrackerMuons)) // checks isTrackerMuon flag
168  hMuIdAlgo->Fill(2);
169  if (muon::isGoodMuon(*muon, muon::TrackerMuonArbitrated)) // resolve ambiguity of sharing segments
170  hMuIdAlgo->Fill(3);
171  if (muon::isGoodMuon(*muon, muon::AllArbitrated)) // all muons with the tracker muon arbitrated
172  hMuIdAlgo->Fill(4);
173  if (muon::isGoodMuon(*muon, muon::GlobalMuonPromptTight)) // global muons with tighter fit requirements
174  hMuIdAlgo->Fill(5);
175  if (muon::isGoodMuon(*muon, muon::TMLastStationLoose)) // penetration depth loose selector
176  hMuIdAlgo->Fill(6);
177  if (muon::isGoodMuon(*muon, muon::TMLastStationTight)) // penetration depth tight selector
178  hMuIdAlgo->Fill(7);
179  if (muon::isGoodMuon(*muon, muon::TM2DCompatibilityLoose)) // likelihood based loose selector
180  hMuIdAlgo->Fill(8);
181  if (muon::isGoodMuon(*muon, muon::TM2DCompatibilityTight)) // likelihood based tight selector
182  hMuIdAlgo->Fill(9);
183  if (muon::isGoodMuon(*muon, muon::TMOneStationLoose)) // require one well matched segment
184  hMuIdAlgo->Fill(10);
185  if (muon::isGoodMuon(*muon, muon::TMOneStationTight)) // require one well matched segment
186  hMuIdAlgo->Fill(11);
187  if (muon::isGoodMuon(*muon,
188  muon::TMLastStationOptimizedLowPtLoose)) // combination of TMLastStation and TMOneStation
189  hMuIdAlgo->Fill(12);
190  if (muon::isGoodMuon(*muon,
191  muon::TMLastStationOptimizedLowPtTight)) // combination of TMLastStation and TMOneStation
192  hMuIdAlgo->Fill(13);
193 
194  // Isolation variables. There are many type of isolation. You can even build your own combining the output of
195  // muon->isolationR03(). E.g.: 1.2*muon->isolationR03().emEt + 0.8*muon->isolationR03().hadEt
196  // *** WARNING *** it is just an EXAMPLE!
197  if (muon->isIsolationValid()) {
198  hMuIso03CaloComb->Fill(1.2 * muon->isolationR03().emEt + 0.8 * muon->isolationR03().hadEt);
199  hMuIso03SumPt->Fill(muon->isolationR03().sumPt);
200  }
201 
202  // OK, let see if we understood everything.
203  // Suppose we are searching for H->ZZ->4mu.
204  // In mean the 4 muons have/are:
205  // high pt (but 1 out of 4 can be at quite low pt)
206  // isolated
207  // so, we can make some requirements
208  if (muon->isolationR03().sumPt < 0.2) {
209  if (muon->isGlobalMuon() || muon::isGoodMuon(*muon, muon::TM2DCompatibilityLoose) ||
211  selectedMuons.push_back(*muon);
212  }
213  }
214 
216  if (selectedMuons.size() == 4) {
218  for (pat::MuonCollection::const_iterator muon = selectedMuons.begin(); muon != selectedMuons.end(); ++muon) {
219  p4CM = p4CM + muon->p4();
220  }
221  h4MuInvMass->Fill(p4CM.mass());
222  }
223 }
void beginJob() override
Definition: MuonAnalyzer.cc:73
void analyze(const edm::Event &event, const edm::EventSetup &eventSetup) override
void endJob() override
Definition: MuonAnalyzer.cc:99
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
T * make(const Args &...args) const
make new ROOT object
Definition: TFileService.h:64
~ExampleMuonAnalyzer() override
Destructor.
Definition: MuonAnalyzer.cc:71
float segmentCompatibility(const reco::Muon &muon, reco::Muon::ArbitrationType arbitrationType=reco::Muon::SegmentAndTrackArbitration)
bool isGoodMuon(const reco::Muon &muon, SelectionType type, reco::Muon::ArbitrationType arbitrationType=reco::Muon::SegmentAndTrackArbitration)
main GoodMuon wrapper call
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
ExampleMuonAnalyzer(const edm::ParameterSet &pset)
Constructor.
Definition: MuonAnalyzer.cc:66
math::XYZTLorentzVector LorentzVector
Lorentz vector.
Definition: Candidate.h:36
std::vector< Muon > MuonCollection
Definition: Muon.h:35
tuple muons
Definition: patZpeak.py:39
edm::EDGetTokenT< pat::MuonCollection > theMuonToken
Definition: MuonAnalyzer.cc:38