CMS 3D CMS Logo

MuonTrackResidualAnalyzer.cc
Go to the documentation of this file.
2 
3 // Collaborating Class Header
8 
10 
16 
20 
26 
27 
28 #include "TFile.h"
29 #include "TH1F.h"
30 #include "TH2F.h"
31 #include "TDirectory.h"
32 
33 using namespace std;
34 using namespace edm;
35 
37 
39  pset = ps;
40  // service parameters
41  ParameterSet serviceParameters = pset.getParameter<ParameterSet>("ServiceParameters");
42  // the services
43  theService = new MuonServiceProxy(serviceParameters);
44 
45  theMuonTrackLabel = pset.getParameter<InputTag>("MuonTrack");
46  theMuonTrackToken = consumes<reco::TrackCollection>(theMuonTrackLabel);
47 
48  cscSimHitLabel = pset.getParameter<InputTag>("CSCSimHit");
49  dtSimHitLabel = pset.getParameter<InputTag>("DTSimHit");
50  rpcSimHitLabel = pset.getParameter<InputTag>("RPCSimHit");
51  theCSCSimHitToken = consumes<std::vector<PSimHit> >(cscSimHitLabel);
52  theDTSimHitToken = consumes<std::vector<PSimHit> >(dtSimHitLabel);
53  theRPCSimHitToken = consumes<std::vector<PSimHit> >(rpcSimHitLabel);
54 
56  out = pset.getUntrackedParameter<string>("rootFileName");
57  dirName_ = pset.getUntrackedParameter<std::string>("dirName");
58  subsystemname_ = pset.getUntrackedParameter<std::string>("subSystemFolder", "YourSubsystem") ;
59 
60  // Sim or Real
61  theDataType = pset.getParameter<InputTag>("DataType");
62  if(theDataType.label() != "RealData" && theDataType.label() != "SimData")
63  LogDebug("MuonTrackResidualAnalyzer")<<"Error in Data Type!!";
64  theDataTypeToken = consumes<edm::SimTrackContainer>(theDataType);
65 
66  theEtaRange = (EtaRange) pset.getParameter<int>("EtaRange");
67 
68  theUpdator = new KFUpdator();
69  theEstimator = new Chi2MeasurementEstimator(100000.);
70 
71  theMuonSimHitNumberPerEvent = 0;
72 
73 }
74 
77  delete theUpdator;
78  delete theEstimator;
79  delete theService;
80 }
81 
82 
84  edm::Run const & iRun,
85  edm::EventSetup const & /* iSetup */)
86 {
87  LogDebug("MuonTrackResidualAnalyzer")<<"Begin Run";
88 
89  //ibooker.showDirStructure();
90 
91  ibooker.cd();
92  InputTag algo = theMuonTrackLabel;
93  string dirName=dirName_;
94  if (!algo.process().empty())
95  dirName+=algo.process()+"_";
96  if(!algo.label().empty())
97  dirName+=algo.label()+"_";
98  if(!algo.instance().empty())
99  dirName+=algo.instance()+"";
100  if (dirName.find("Tracks")<dirName.length()){
101  dirName.replace(dirName.find("Tracks"),6,"");
102  }
103  std::replace(dirName.begin(), dirName.end(), ':', '_');
104  ibooker.setCurrentFolder(dirName);
105 
106 
107  hDPtRef = ibooker.book1D("DeltaPtRef","P^{in}_{t}-P^{in ref}",10000,-20,20);
108 
109  // Resolution wrt the 1D Rec Hits
110  // h1DRecHitRes = new HResolution1DRecHit("TotalRec");
111 
112  // Resolution wrt the 1d Sim Hits
113  // h1DSimHitRes = new HResolution1DRecHit("TotalSim");
114 
115  hSimHitsPerTrack = ibooker.book1D("SimHitsPerTrack","Number of sim hits per track",55,0,55);
116  hSimHitsPerTrackVsEta = ibooker.book2D("SimHitsPerTrackVsEta","Number of sim hits per track VS #eta",120,-3.,3.,55,0,55);
117  hDeltaPtVsEtaSim = ibooker.book2D("DeltaPtVsEtaSim","#Delta P_{t} vs #eta gen, sim quantity",120,-3.,3.,500,-250.,250.);
118  hDeltaPtVsEtaSim2 = ibooker.book2D("DeltaPtVsEtaSim2","#Delta P_{t} vs #eta gen, sim quantity",120,-3.,3.,500,-250.,250.);
119 }
120 
122  if ( !out.empty() && dbe_ ) dbe_->save(out);
123 }
125  LogDebug("MuonTrackResidualAnalyzer")<<"Analyze";
126 
127  // Update the services
128  theService->update(eventSetup);
130  theMuonSimHitNumberPerEvent = 0;
131 
132  // Get the SimHit collection from the event
133  Handle<PSimHitContainer> dtSimHits;
134  event.getByToken(theDTSimHitToken, dtSimHits);
135 
136  Handle<PSimHitContainer> cscSimHits;
137  event.getByToken(theCSCSimHitToken, cscSimHits);
138 
139  Handle<PSimHitContainer> rpcSimHits;
140  event.getByToken(theRPCSimHitToken, rpcSimHits);
141 
143 
144  // FIXME Add the tracker one??
145 
146  // Map simhits per DetId
147  map<DetId, const PSimHit* > muonSimHitsPerId =
148  mapMuSimHitsPerId(dtSimHits,cscSimHits,rpcSimHits);
149 
150  hSimHitsPerTrack->Fill(theMuonSimHitNumberPerEvent);
151 
152  double etaSim=0;
153 
154  if(theDataType.label() == "SimData"){
155 
156  // Get the SimTrack collection from the event
157  event.getByToken(theDataTypeToken,simTracks);
158 
159  // Loop over the Sim tracks
160  SimTrackContainer::const_iterator simTrack;
161 
162  for (simTrack = simTracks->begin(); simTrack != simTracks->end(); ++simTrack)
163  if (abs((*simTrack).type()) == 13){
164  hSimHitsPerTrackVsEta->Fill((*simTrack).momentum().eta(),theMuonSimHitNumberPerEvent);
165  etaSim = (*simTrack).momentum().eta();
166  theSimTkId = (*simTrack).trackId();
167 
168  }
169  }
170 
171 
172  // Get the RecTrack collection from the event
174  event.getByToken(theMuonTrackToken, muonTracks);
175 
176  reco::TrackCollection::const_iterator muonTrack;
177 
178  // Loop over the Rec tracks
179  for (muonTrack = muonTracks->begin(); muonTrack != muonTracks->end(); ++muonTrack) {
180 
181  reco::TransientTrack track(*muonTrack,&*theService->magneticField(),theService->trackingGeometry());
182 
183  TrajectoryStateOnSurface outerTSOS = track.outermostMeasurementState();
184  TrajectoryStateOnSurface innerTSOS = track.innermostMeasurementState();
185 
187 
188  // SimHit Energy loss analysis
189  double momAtEntry = -150., momAtExit = -150.;
190 
191  if(theSimHitContainer.size()>1){
192 
193  const GeomDet *geomDetA = theService->trackingGeometry()->idToDet(DetId(theSimHitContainer.front()->detUnitId()));
194  double distA = geomDetA->toGlobal(theSimHitContainer.front()->localPosition()).mag();
195 
196  const GeomDet *geomDetB = theService->trackingGeometry()->idToDet(DetId(theSimHitContainer.back()->detUnitId()));
197  double distB = geomDetB->toGlobal(theSimHitContainer.back()->localPosition()).mag();
198 
199  LogTrace("MuonTrackResidualAnalyzer")<<"Inner SimHit: "<<theSimHitContainer.front()->particleType()
200  <<" Pt: "<<theSimHitContainer.front()->momentumAtEntry().perp()
201  <<" E: "<<theSimHitContainer.front()->momentumAtEntry().perp()
202  <<" R: "<<distA<<endl;
203  LogTrace("MuonTrackResidualAnalyzer")<<"Outer SimHit: "<<theSimHitContainer.back()->particleType()
204  <<" Pt: "<<theSimHitContainer.back()->momentumAtEntry().perp()
205  <<" E: "<<theSimHitContainer.front()->momentumAtEntry().perp()
206  <<" R: "<<distB<<endl;
207 
208  momAtEntry = theSimHitContainer.front()->momentumAtEntry().perp();
209  momAtExit = theSimHitContainer.back()->momentumAtEntry().perp();
210  }
211 
212  trackingRecHit_iterator rhFirst = track.recHitsBegin();
213  trackingRecHit_iterator rhLast = track.recHitsEnd()-1;
214  map<DetId,const PSimHit*>::const_iterator itFirst = muonSimHitsPerId.find((*rhFirst)->geographicalId());
215  map<DetId,const PSimHit*>::const_iterator itLast = muonSimHitsPerId.find((*rhLast)->geographicalId());
216 
217  double momAtEntry2 = -150, momAtExit2 = -150.;
218  if (itFirst != muonSimHitsPerId.end() )
219  momAtEntry2 = itFirst->second->momentumAtEntry().perp();
220  else {
221  LogDebug("MuonTrackResidualAnalyzer")<<"No first sim hit found";
222  ++rhFirst;
223  itFirst = muonSimHitsPerId.find((*rhFirst)->geographicalId());
224  if (itFirst != muonSimHitsPerId.end() )
225  momAtEntry2 = itFirst->second->momentumAtEntry().perp();
226  else{
227  LogDebug("MuonTrackResidualAnalyzer")<<"No second sim hit found";
228  // continue;
229  }
230  }
231 
232  if (itLast != muonSimHitsPerId.end() )
233  momAtExit2 = itLast->second->momentumAtEntry().perp();
234  else {
235  LogDebug("MuonTrackResidualAnalyzer")<<"No last sim hit found";
236  --rhLast;
237  itLast = muonSimHitsPerId.find((*rhLast)->geographicalId());
238  if (itLast != muonSimHitsPerId.end() )
239  momAtExit2 = itLast->second->momentumAtEntry().perp();
240  else{
241  LogDebug("MuonTrackResidualAnalyzer")<<"No last but one sim hit found";
242  // continue;
243  }
244  }
245 
246  if(etaSim){
247  if(momAtEntry >=0 && momAtExit >= 0)
248  hDeltaPtVsEtaSim->Fill(etaSim,momAtEntry-momAtExit);
249  if(momAtEntry2 >=0 && momAtExit2 >= 0)
250  hDeltaPtVsEtaSim2->Fill(etaSim,momAtEntry2-momAtExit2);
251  }
252  else
253  LogDebug("MuonTrackResidualAnalyzer")<<"NO SimTrack'eta";
254  //
255 
256  // computeResolution(trajectoryBW,muonSimHitsPerId,h1DSimHitRes);
257  // computeResolution(smoothed,muonSimHitsPerId,h1DSimHitRes);
258 
259  }
260 }
261 
263  switch(theEtaRange){
264  case all:
265  return ( abs(eta) <= 2.4 ) ? true : false;
266  case barrel:
267  return ( abs(eta) < 1.1 ) ? true : false;
268  case endcap:
269  return ( abs(eta) >= 1.1 && abs(eta) <= 2.4 ) ? true : false;
270  default:
271  {LogDebug("MuonTrackResidualAnalyzer")<<"No correct Eta range selected!! "; return false;}
272  }
273 }
274 
275 // map the muon simhits by id
276 map<DetId,const PSimHit*>
278  Handle<PSimHitContainer> cscSimhits,
279  Handle<PSimHitContainer> rpcSimhits) {
280 
282 
283  map<DetId,const PSimHit*> hitIdMap;
284  theSimHitContainer.clear();
285 
286  mapMuSimHitsPerId(dtSimhits,hitIdMap);
287  mapMuSimHitsPerId(cscSimhits,hitIdMap);
288  mapMuSimHitsPerId(rpcSimhits,hitIdMap);
289 
290  if(theSimHitContainer.size() >1)
291  stable_sort(theSimHitContainer.begin(),theSimHitContainer.end(),RadiusComparatorInOut(theService->trackingGeometry()));
292 
293  LogDebug("MuonTrackResidualAnalyzer")<<"Sim Hit list";
294  int count=1;
295  for(vector<const PSimHit*>::const_iterator it = theSimHitContainer.begin();
296  it != theSimHitContainer.end(); ++it){
297  LogTrace("MuonTrackResidualAnalyzer")<<count
298  << " "
299  << " Process Type: " << (*it)->processType()
300  << " "
301  << debug.dumpMuonId(DetId( (*it)->detUnitId() ))<<endl;
302  }
303 
304  return hitIdMap;
305 }
306 
307 
309  map<DetId,const PSimHit*> &hitIdMap){
310 
311  for(PSimHitContainer::const_iterator simhit = simhits->begin();
312  simhit != simhits->end(); ++simhit) {
313 
314  if ( abs(simhit->particleType()) != 13 && theSimTkId != simhit->trackId()) continue;
315 
316  theSimHitContainer.push_back(&*simhit);
317  DetId id = DetId(simhit->detUnitId());
318 
319  if(id.subdetId() == MuonSubdetId::DT){
320  DTLayerId lId(id.rawId());
321  id = DetId(lId.rawId());
322  }
323 
324  map<DetId,const PSimHit*>::const_iterator it = hitIdMap.find(id);
325 
326  if (it == hitIdMap.end() )
327  hitIdMap[id] = &*simhit;
328  else
329  LogDebug("MuonTrackResidualAnalyzer")<<"TWO muons in the same sensible volume!!";
330 
331  ++theMuonSimHitNumberPerEvent;
332  }
333 }
334 
335 
337  map<DetId,const PSimHit*> &hitIdMap,
339 
341 
342  for(Trajectory::DataContainer::const_iterator datum = data.begin();
343  datum != data.end(); ++datum){
344 
345  GlobalPoint fitPoint = datum->updatedState().globalPosition();
346 
347  // FIXME!
348  // double errX = datum->updatedState().cartesianError().matrix()[0][0];
349  // double errY = datum->updatedState().cartesianError().matrix()[1][1];
350  // double errZ = datum->updatedState().cartesianError().matrix()[2][2];
351  //
352  double errX = datum->updatedState().localError().matrix()(3,3);
353  double errY = datum->updatedState().localError().matrix()(4,4);
354  double errZ = 1.;
355 
356  map<DetId,const PSimHit*>::const_iterator it = hitIdMap.find(datum->recHit()->geographicalId());
357 
358 
359  if (it == hitIdMap.end() ) continue; // FIXME! Put a counter
360 
361  const PSimHit* simhit = it->second;
362 
363  LocalPoint simHitPoint = simhit->localPosition();
364 
365  const GeomDet* geomDet = theService->trackingGeometry()->idToDet(DetId(simhit->detUnitId()));
366 
367  LocalPoint fitLocalPoint = geomDet->toLocal(fitPoint);
368 
369  LocalVector diff = fitLocalPoint-simHitPoint;
370 
371 
372  cout << "SimHit position "<< simHitPoint << endl;
373  cout << "Fit position "<< fitLocalPoint << endl;
374  cout << "Fit position2 "<< datum->updatedState().localPosition() << endl;
375  cout << "Errors on the fit position: (" << errX << "," << errY << "," << errZ << ")"<<endl;
376  cout << "Resolution on x: " << diff.x()/abs(simHitPoint.x()) << endl;
377  cout << "Resolution on y: " << diff.y()/abs(simHitPoint.y()) << endl;
378  cout << "Resolution on z: " << diff.z()/abs(simHitPoint.z()) << endl;
379 
380  cout << "Eta direction: "<< simhit->momentumAtEntry().eta() <<" eta position: " << simHitPoint.eta() << endl;
381  cout << "Phi direction: "<< simhit->momentumAtEntry().phi() <<" phi position: " << simHitPoint.phi() << endl;
382 
383 
384  histos->Fill( simHitPoint.x(), simHitPoint.y(), simHitPoint.z(),
385  diff.x(), diff.y(), diff.z(),
386  errX, errY, errZ,
387  simhit->momentumAtEntry().eta(), simhit->momentumAtEntry().phi());
388  // simHitPoint.eta(), simHitPoint.phi() ); // FIXME!
389  }
390 
391 
392 }
#define LogDebug(id)
~MuonTrackResidualAnalyzer() override
Destructor.
std::map< DetId, const PSimHit * > mapMuSimHitsPerId(edm::Handle< edm::PSimHitContainer > dtSimhits, edm::Handle< edm::PSimHitContainer > cscSimhits, edm::Handle< edm::PSimHitContainer > rpcSimhits)
void analyze(const edm::Event &event, const edm::EventSetup &eventSetup) override
LocalVector momentumAtEntry() const
The momentum of the track that produced the hit, at entry point.
Definition: PSimHit.h:47
T mag() const
The vector magnitude. Equivalent to sqrt(vec.mag2())
GlobalPoint toGlobal(const Local2DPoint &lp) const
Conversion to the global R.F. from the R.F. of the GeomDet.
Definition: GeomDet.h:54
Geom::Phi< T > phi() const
Definition: PV3DBase.h:69
constexpr uint32_t rawId() const
get the raw id
Definition: DetId.h:47
T y() const
Definition: PV3DBase.h:63
def replace(string, replacements)
LocalPoint toLocal(const GlobalPoint &gp) const
Conversion to the R.F. of the GeomDet.
Definition: GeomDet.h:69
void endRun(edm::Run const &, edm::EventSetup const &) override
std::string dumpMuonId(const DetId &id) const
DataContainer const & measurements() const
Definition: Trajectory.h:196
std::vector< TrajectoryMeasurement > DataContainer
Definition: Trajectory.h:44
Local3DPoint localPosition() const
Definition: PSimHit.h:44
simTrack
per collection params
T phi() const
Definition: Phi.h:41
T z() const
Definition: PV3DBase.h:64
MonitorElement * book1D(Args &&...args)
Definition: DQMStore.h:118
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
MuonTrackResidualAnalyzer(const edm::ParameterSet &ps)
Constructor.
#define LogTrace(id)
DQMStore * dbe_
std::vector< ConstRecHitPointer > ConstRecHitContainer
Definition: DetId.h:18
void bookHistograms(DQMStore::IBooker &, edm::Run const &, edm::EventSetup const &) override
#define debug
Definition: HDRShower.cc:19
void setCurrentFolder(const std::string &fullpath)
Definition: DQMStore.cc:274
MonitorElement * book2D(Args &&...args)
Definition: DQMStore.h:136
std::string const & label() const
Definition: InputTag.h:36
T eta() const
Definition: PV3DBase.h:76
std::string const & process() const
Definition: InputTag.h:40
HLT enums.
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:82
void Fill(double x, double y, double z, double dx, double dy, double dz, double errx, double erry, double errz, double eta, double phi)
Definition: Histograms.h:333
static constexpr int DT
Definition: MuonSubdetId.h:12
T x() const
Definition: PV3DBase.h:62
std::string const & instance() const
Definition: InputTag.h:37
void computeResolution(Trajectory &trajectory, std::map< DetId, const PSimHit * > &hitIdMap, HResolution1DRecHit *histos)
unsigned int detUnitId() const
Definition: PSimHit.h:93
Definition: event.py:1
Definition: Run.h:44