CMS 3D CMS Logo

OverlapProblemTPAnalyzer.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: OverlapProblemTPAnalyzer
4 // Class: OverlapProblemTPAnalyzer
5 //
13 //
14 // Original Author: Andrea Venturi
15 // Created: Thu Dec 16 16:32:56 CEST 2010
16 // $Id: OverlapProblemTPAnalyzer.cc,v 1.1 2011/01/22 17:59:36 venturia Exp $
17 //
18 //
19 
20 // system include files
21 #include <memory>
22 #include <numeric>
23 #include <vector>
24 
25 // user include files
28 
33 
35 
37 
40 
42 
45 
49 
51 
52 #include "TH1F.h"
53 #include "TH2F.h"
54 //
55 // class decleration
56 //
57 
58 class OverlapProblemTPAnalyzer : public edm::one::EDAnalyzer<edm::one::WatchRuns, edm::one::SharedResources> {
59 public:
61  ~OverlapProblemTPAnalyzer() override;
62 
63 private:
64  void beginRun(const edm::Run&, const edm::EventSetup&) override;
65  void endRun(const edm::Run&, const edm::EventSetup&) override;
66  void analyze(const edm::Event&, const edm::EventSetup&) override;
67 
68  // ----------member data ---------------------------
69 
70  TH1F* m_ptp;
71  TH1F* m_etatp;
72  TH1F* m_nhits;
73  TH1F* m_nrechits;
75  TH1F* m_nassotk;
76  TH1F* m_pdgid;
77  TH1F* m_llbit;
78  TH1F* m_statustp;
79 
80  std::vector<TH1F*> m_simhitytecr;
81  std::vector<TH1F*> m_assosimhitytecr;
82 
86 };
87 
88 //
89 // constants, enums and typedefs
90 //
91 
92 //
93 // static data member definitions
94 //
95 
96 //
97 // constructors and destructor
98 //
100  : m_simhitytecr(),
101  m_assosimhitytecr(),
102  m_tpcollToken(
103  consumes<TrackingParticleCollection>(iConfig.getParameter<edm::InputTag>("trackingParticlesCollection"))),
104  m_trkcollToken(consumes<edm::View<reco::Track> >(iConfig.getParameter<edm::InputTag>("trackCollection"))),
105  m_associatorToken(consumes<reco::TrackToTrackingParticleAssociator>(edm::InputTag("trackAssociatorByHits"))) {
106  //now do what ever initialization is needed
107 
108  usesResource(TFileService::kSharedResource);
109 
111 
112  m_ptp = tfserv->make<TH1F>("tpmomentum", "Tracking Particle momentum", 100, 0., 200.);
113  m_etatp = tfserv->make<TH1F>("tpeta", "Tracking Particle pseudorapidity", 100, -4., 4.);
114  m_nhits = tfserv->make<TH1F>("nhits", "Tracking Particle associated hits", 100, -0.5, 99.5);
115  m_nrechits = tfserv->make<TH1F>("nrechits", "Tracking Particle associated rec hits", 100, -0.5, 99.5);
116  m_nrecvssimhits = tfserv->make<TH2F>(
117  "nrecvssimhits", "Tracking Particle associated rec hits vs sim hits", 100, -0.5, 99.5, 100, -0.5, 99.5);
118  m_nassotk = tfserv->make<TH1F>("nassotk", "Number of assocated reco tracks", 10, -0.5, 9.5);
119 
120  m_pdgid = tfserv->make<TH1F>("pdgid", "Tracking Particle PDG id", 1000, -500.5, 499.5);
121  m_llbit = tfserv->make<TH1F>("llbit", "Tracking Particle LongLived bit", 2, -0.5, 1.5);
122  m_statustp = tfserv->make<TH1F>("statustp", "Tracking Particle status", 2000, -1000.5, 999.5);
123 
124  for (unsigned int ring = 0; ring < 7; ++ring) {
125  char name[100];
126  char title[100];
127 
128  sprintf(name, "simytecr_%d", ring + 1);
129  sprintf(title, "SimHit local Y TEC ring %d", ring + 1);
130 
131  m_simhitytecr.push_back(tfserv->make<TH1F>(name, title, 200, -20., 20.));
132 
133  sprintf(name, "assosimytecr_%d", ring + 1);
134  sprintf(title, "SimHit local Y TEC ring %d with associated RecHit", ring + 1);
135 
136  m_assosimhitytecr.push_back(tfserv->make<TH1F>(name, title, 200, -20., 20.));
137  }
138 }
139 
141  // do anything here that needs to be done at desctruction time
142  // (e.g. close files, deallocate resources etc.)
143 }
144 
145 //
146 // member functions
147 //
148 
149 // ------------ method called to for each event ------------
151  using namespace edm;
152 
153  // reco track Handle
154 
155  // Handle<reco::TrackCollection> trkcoll;
157  iEvent.getByToken(m_trkcollToken, trkcoll);
158 
160  iEvent.getByToken(m_tpcollToken, tpcoll);
161 
163  iEvent.getByToken(m_associatorToken, tahandle);
164 
165  // associate reco to sim tracks
166 
167  reco::SimToRecoCollection srcoll = tahandle->associateSimToReco(trkcoll, tpcoll);
168 
169  // loop on Handle with index and use find
170 
171  for (unsigned int index = 0; index != tpcoll->size(); ++index) {
172  // get TrackingParticleRef
173 
174  const TrackingParticleRef tp(tpcoll, index);
175 
176  if (std::abs(tp->pdgId()) != 13)
177  continue;
178 
179  // get the SimHIt from tracker only
180 
181  // Commented since the new TP's do not have this method
182  // std::vector<PSimHit> tksimhits = tp->trackPSimHit(DetId::Tracker);
183 
184  m_ptp->Fill(tp->p());
185  m_etatp->Fill(tp->eta());
186  // m_nhits->Fill(tp->matchedHit());
187  // With the new Tracking Particles I have to use a different method
188  // m_nhits->Fill(tksimhits.size());
189  m_nhits->Fill(tp->numberOfTrackerHits());
190 
191  m_pdgid->Fill(tp->pdgId());
192  m_llbit->Fill(tp->longLived());
193  m_statustp->Fill(tp->status());
194 
195  // prepare a vector of TrackingRecHit from the associated reco tracks
196 
197  std::vector<DetId> rechits;
198 
199  // look at associated tracks
200 
201  if (srcoll.find(tp) != srcoll.end()) {
203  m_nassotk->Fill(trks.size());
204 
205  // loop on associated tracks and fill TrackingRecHit vector
207  for (trackingRecHit_iterator rh = trk->first->recHitsBegin(); rh != trk->first->recHitsEnd(); ++rh) {
208  rechits.push_back((*rh)->geographicalId());
209  }
210  }
211 
212  } else {
213  m_nassotk->Fill(0.);
214  edm::LogInfo("NoAssociatedRecoTrack")
215  << "No associated reco track for TP with p = " << tp->p() << " and eta = " << tp->eta();
216  }
217 
218  m_nrechits->Fill(rechits.size());
219  // new method used to be compliant with the new TP's
220  m_nrecvssimhits->Fill(tp->numberOfTrackerHits(), rechits.size());
221 
222  LogDebug("RecHitDetId") << "List of " << rechits.size() << " rechits detid from muon with p = " << tp->p()
223  << "and eta = " << tp->eta();
224  for (unsigned int i = 0; i < rechits.size(); ++i) {
225  LogTrace("RecHitDetId") << rechits[i].rawId();
226  }
227 
228  // loop on sim hits
229 
230  LogDebug("SimHitDetId") << "List of " << tp->numberOfTrackerHits()
231  << " simhits detid from muon with p = " << tp->p() << "and eta = " << tp->eta();
232  }
233 }
234 
236 
238 
239 //define this as a plug-in
reco::SimToRecoCollection associateSimToReco(const edm::Handle< edm::View< reco::Track >> &tCH, const edm::Handle< TrackingParticleCollection > &tPCH) const
static const std::string kSharedResource
Definition: TFileService.h:76
void endRun(const edm::Run &, const edm::EventSetup &) override
void analyze(const edm::Event &, const edm::EventSetup &) override
Trktree trk
Definition: Trktree.cc:2
void beginRun(const edm::Run &, const edm::EventSetup &) override
value_type::value_type result_type
type return by operator[]
edm::EDGetTokenT< TrackingParticleCollection > m_tpcollToken
const_iterator find(const key_type &k) const
find element with specified reference key
#define LogTrace(id)
const_iterator end() const
last iterator over the map (read only)
edm::EDGetTokenT< edm::View< reco::Track > > m_trkcollToken
int iEvent
Definition: GenABIO.cc:224
OverlapProblemTPAnalyzer(const edm::ParameterSet &)
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
Log< level::Info, false > LogInfo
std::vector< TH1F * > m_simhitytecr
edm::EDGetTokenT< reco::TrackToTrackingParticleAssociator > m_associatorToken
fixed size matrix
HLT enums.
T * make(const Args &...args) const
make new ROOT object
Definition: TFileService.h:64
std::vector< TH1F * > m_assosimhitytecr
std::vector< TrackingParticle > TrackingParticleCollection
Definition: Run.h:45
#define LogDebug(id)