CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
OccupancyPlots.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: OccupancyPlots
4 // Class: OccupancyPlots
5 //
13 //
14 // Original Author: Andrea Venturi
15 // Created: Mon Oct 27 17:37:53 CET 2008
16 // $Id: OccupancyPlots.cc,v 1.3 2013/02/27 19:49:47 wmtan Exp $
17 //
18 //
19 
20 
21 // system include files
22 #include <memory>
23 
24 // user include files
25 
26 #include <vector>
27 #include <map>
28 #include <limits>
29 
30 #include "TProfile.h"
31 
42 
48 
53 
62 
63 //
64 // class decleration
65 //
66 
68  public:
69  explicit OccupancyPlots(const edm::ParameterSet&);
71 
72 
73 private:
74  virtual void beginJob() override ;
75  virtual void analyze(const edm::Event&, const edm::EventSetup&) override;
76  virtual void beginRun(const edm::Run&, const edm::EventSetup&) override;
77  virtual void endRun(const edm::Run&, const edm::EventSetup&) override;
78  virtual void endJob() override ;
79 
80  // ----------member data ---------------------------
81 
82  std::vector<edm::EDGetTokenT<std::map<unsigned int, int> > > m_multiplicityMapTokens;
83  std::vector<edm::EDGetTokenT<std::map<unsigned int, int> > > m_occupancyMapTokens;
85 
87  std::map<unsigned int,DetIdSelector> m_wantedsubdets;
88 
89  TProfile** m_avemultiplicity;
90  TProfile** m_aveoccupancy;
91 
94 
95  TProfile** m_averadius;
96  TProfile** m_avez;
97  TProfile** m_avex;
98  TProfile** m_avey;
99  TProfile** m_zavedr;
100  TProfile** m_zavedz;
101  TProfile** m_zavedrphi;
102  TProfile** m_yavedr;
103  TProfile** m_yavedz;
104  TProfile** m_yavedrphi;
105  TProfile** m_xavedr;
106  TProfile** m_xavedz;
107  TProfile** m_xavedrphi;
108 
109 
110 };
111 
112 //
113 // constants, enums and typedefs
114 //
115 
116 //
117 // static data member definitions
118 //
119 
120 //
121 // constructors and destructor
122 //
124  m_multiplicityMapTokens(edm::vector_transform(iConfig.getParameter<std::vector<edm::InputTag> >("multiplicityMaps"), [this](edm::InputTag const & tag){return consumes<std::map<unsigned int, int> >(tag);})),
125  m_occupancyMapTokens(edm::vector_transform(iConfig.getParameter<std::vector<edm::InputTag> >("occupancyMaps"), [this](edm::InputTag const & tag){return consumes<std::map<unsigned int, int> >(tag);})),
126  m_fp(iConfig.getUntrackedParameter<edm::FileInPath>("file",edm::FileInPath("CalibTracker/SiPixelESProducers/data/PixelSkimmedGeometry.txt"))),
127  m_rhm(consumesCollector()), m_wantedsubdets()
128 {
129  //now do what ever initialization is needed
130 
131  m_avemultiplicity = m_rhm.makeTProfile("avemult","Average Multiplicty",6000,0.5,6000.5);
132  m_aveoccupancy = m_rhm.makeTProfile("aveoccu","Average Occupancy",6000,0.5,6000.5);
133 
134  m_nchannels_ideal = m_rhm.makeTH1F("nchannels_ideal","Number of channels (ideal)",6000,0.5,6000.5);
135  m_nchannels_real = m_rhm.makeTH1F("nchannels_real","Number of channels (real)",6000,0.5,6000.5);
136 
137  m_averadius = m_rhm.makeTProfile("averadius","Average Module Radius",6000,0.5,6000.5);
138  m_avez = m_rhm.makeTProfile("avez","Average Module z coordinate",6000,0.5,6000.5);
139  m_avex = m_rhm.makeTProfile("avex","Average Module x coordinate",6000,0.5,6000.5);
140  m_avey = m_rhm.makeTProfile("avey","Average Module y coordinate",6000,0.5,6000.5);
141 
142  m_zavedr = m_rhm.makeTProfile("zavedr","Average z unit vector dr",6000,0.5,6000.5);
143  m_zavedz = m_rhm.makeTProfile("zavedz","Average z unit vector dz",6000,0.5,6000.5);
144  m_zavedrphi = m_rhm.makeTProfile("zavedrphi","Average z unit vector drphi",6000,0.5,6000.5);
145  m_xavedr = m_rhm.makeTProfile("xavedr","Average x unit vector dr",6000,0.5,6000.5);
146  m_xavedz = m_rhm.makeTProfile("xavedz","Average x unit vctor dz",6000,0.5,6000.5);
147  m_xavedrphi = m_rhm.makeTProfile("xavedrphi","Average Module x unit vector drphi",6000,0.5,6000.5);
148  m_yavedr = m_rhm.makeTProfile("yavedr","Average y unit vector dr",6000,0.5,6000.5);
149  m_yavedz = m_rhm.makeTProfile("yavedz","Average y unit vector dz",6000,0.5,6000.5);
150  m_yavedrphi = m_rhm.makeTProfile("yavedrphi","Average y unit vector drphi",6000,0.5,6000.5);
151 
152  std::vector<edm::ParameterSet> wantedsubdets_ps = iConfig.getParameter<std::vector<edm::ParameterSet> >("wantedSubDets");
153 
154  for(std::vector<edm::ParameterSet>::const_iterator wsdps = wantedsubdets_ps.begin();wsdps!=wantedsubdets_ps.end();++wsdps) {
155 
156  unsigned int detsel = wsdps->getParameter<unsigned int>("detSelection");
157  std::vector<std::string> selstr = wsdps->getUntrackedParameter<std::vector<std::string> >("selection");
158  m_wantedsubdets[detsel]=DetIdSelector(selstr);
159 
160  }
161 
162 
163 }
164 
165 
167 {
168 
169  // do anything here that needs to be done at desctruction time
170  // (e.g. close files, deallocate resources etc.)
171 
172 }
173 
174 
175 //
176 // member functions
177 //
178 
179 // ------------ method called to for each event ------------
180 void
182 {
183  using namespace edm;
184 
185 
186  for(std::vector<edm::EDGetTokenT<std::map<unsigned int, int> > >::const_iterator mapToken = m_multiplicityMapTokens.begin();mapToken!=m_multiplicityMapTokens.end();++mapToken) {
187 
189  iEvent.getByToken(*mapToken,mults);
190 
191  for(std::map<unsigned int,int>::const_iterator mult=mults->begin();mult!=mults->end();mult++) {
192  if(m_avemultiplicity && *m_avemultiplicity) (*m_avemultiplicity)->Fill(mult->first,mult->second);
193  }
194  }
195 
196 
197 
198  for(std::vector<edm::EDGetTokenT<std::map<unsigned int, int> > >::const_iterator mapToken = m_occupancyMapTokens.begin();mapToken!=m_occupancyMapTokens.end();++mapToken) {
199 
201  iEvent.getByToken(*mapToken,occus);
202 
203  for(std::map<unsigned int,int>::const_iterator occu=occus->begin();occu!=occus->end();occu++) {
204  if(m_aveoccupancy && *m_aveoccupancy) (*m_aveoccupancy)->Fill(occu->first,occu->second);
205  }
206  }
207 
208 }
209 
210 
211 // ------------ method called once each job just before starting event loop ------------
212 void
214 {
215 
216 }
217 
218 void
219 OccupancyPlots::beginRun(const edm::Run& iRun, const edm::EventSetup& iSetup) {
220 
221  m_rhm.beginRun(iRun);
222 
223 }
224 
225 void
226 OccupancyPlots::endRun(const edm::Run& iRun, const edm::EventSetup& iSetup) {
227 
228 
229  // edm::ESHandle<GlobalTrackingGeometry> trkgeo;
230  // iSetup.get<GlobalTrackingGeometryRecord>().get("",trkgeo);
232  iSetup.get<TrackerDigiGeometryRecord>().get("",trkgeo);
233 
234  // Test new TrackerGeometry features
235  LogDebug("IsThereTest") << "Test of TrackerGeometry::isThere";
236  LogTrace("IsThereTest") << " is there PixelBarrel: " << trkgeo->isThere(GeomDetEnumerators::PixelBarrel);
237  LogTrace("IsThereTest") << " is there PixelEndcap: " << trkgeo->isThere(GeomDetEnumerators::PixelEndcap);
238  LogTrace("IsThereTest") << " is there P1PXB: " << trkgeo->isThere(GeomDetEnumerators::P1PXB);
239  LogTrace("IsThereTest") << " is there P1PXEC: " << trkgeo->isThere(GeomDetEnumerators::P1PXEC);
240  LogTrace("IsThereTest") << " is there P2PXEC: " << trkgeo->isThere(GeomDetEnumerators::P2PXEC);
241  LogTrace("IsThereTest") << " is there TIB: " << trkgeo->isThere(GeomDetEnumerators::TIB);
242  LogTrace("IsThereTest") << " is there TID: " << trkgeo->isThere(GeomDetEnumerators::TID);
243  LogTrace("IsThereTest") << " is there TOB: " << trkgeo->isThere(GeomDetEnumerators::TOB);
244  LogTrace("IsThereTest") << " is there TEC: " << trkgeo->isThere(GeomDetEnumerators::TEC);
245  LogTrace("IsThereTest") << " is there P2OTB: " << trkgeo->isThere(GeomDetEnumerators::P2OTB);
246  LogTrace("IsThereTest") << " is there P2OTEC: " << trkgeo->isThere(GeomDetEnumerators::P2OTEC);
247 
248 
249  const Local2DPoint center(0.,0.);
250  const Local3DPoint locz(0.,0.,1.);
251  const Local3DPoint locx(1.,0.,0.);
252  const Local3DPoint locy(0.,1.,0.);
253  const GlobalPoint origin(0.,0.,0.);
254 
255  TrackingGeometry::DetIdContainer detunits = trkgeo->detUnitIds();
256 
257  for(TrackingGeometry::DetIdContainer::const_iterator det = detunits.begin(); det!=detunits.end(); ++det) {
258 
259  if(det->det()!=DetId::Tracker) continue;
260 
261  edm::LogInfo("DetIdFromGeometry") << det->rawId();
262 
263  GlobalPoint position = trkgeo->idToDet(*det)->toGlobal(center);
264  GlobalPoint zpos = trkgeo->idToDet(*det)->toGlobal(locz);
265  GlobalPoint xpos = trkgeo->idToDet(*det)->toGlobal(locx);
266  GlobalPoint ypos = trkgeo->idToDet(*det)->toGlobal(locy);
267  GlobalVector posvect = position - origin;
268  GlobalVector dz = zpos - position;
269  GlobalVector dx = xpos - position;
270  GlobalVector dy = ypos - position;
271 
272  double dzdr = posvect.perp()>0 ? (dz.x()*posvect.x()+dz.y()*posvect.y())/posvect.perp() : 0. ;
273  double dxdr = posvect.perp()>0 ? (dx.x()*posvect.x()+dx.y()*posvect.y())/posvect.perp() : 0. ;
274  double dydr = posvect.perp()>0 ? (dy.x()*posvect.x()+dy.y()*posvect.y())/posvect.perp() : 0. ;
275 
276  double dzdrphi = posvect.perp()>0 ? (dz.y()*posvect.x()-dz.x()*posvect.y())/posvect.perp() : 0. ;
277  double dxdrphi = posvect.perp()>0 ? (dx.y()*posvect.x()-dx.x()*posvect.y())/posvect.perp() : 0. ;
278  double dydrphi = posvect.perp()>0 ? (dy.y()*posvect.x()-dy.x()*posvect.y())/posvect.perp() : 0. ;
279 
280  for(std::map<unsigned int,DetIdSelector>::const_iterator sel=m_wantedsubdets.begin();sel!=m_wantedsubdets.end();++sel) {
281 
282  if(sel->second.isSelected(*det)) {
283  edm::LogInfo("SelectedDetId") << sel->first;
284  // average positions
285  if(m_averadius && *m_averadius) (*m_averadius)->Fill(sel->first,position.perp());
286  if(m_avez && *m_avez) (*m_avez)->Fill(sel->first,position.z());
287  if(m_avex && *m_avex) (*m_avex)->Fill(sel->first,position.x());
288  if(m_avey && *m_avey) (*m_avey)->Fill(sel->first,position.y());
289  if(m_zavedr && *m_zavedr) (*m_zavedr)->Fill(sel->first,dzdr);
290  if(m_zavedz && *m_zavedz) (*m_zavedz)->Fill(sel->first,dz.z());
291  if(m_zavedrphi && *m_zavedrphi) (*m_zavedrphi)->Fill(sel->first,dzdrphi);
292  if(m_xavedr && *m_xavedr) (*m_xavedr)->Fill(sel->first,dxdr);
293  if(m_xavedz && *m_xavedz) (*m_xavedz)->Fill(sel->first,dx.z());
294  if(m_xavedrphi && *m_xavedrphi) (*m_xavedrphi)->Fill(sel->first,dxdrphi);
295  if(m_yavedr && *m_yavedr) (*m_yavedr)->Fill(sel->first,dydr);
296  if(m_yavedz && *m_yavedz) (*m_yavedz)->Fill(sel->first,dy.z());
297  if(m_yavedrphi && *m_yavedrphi) (*m_yavedrphi)->Fill(sel->first,dydrphi);
298  }
299  }
300  }
301 
302 
304  iSetup.get<SiStripQualityRcd>().get("",quality);
305 
306 
308 
309  const std::vector<uint32_t>& detids = reader->getAllDetIds();
310 
311  for(std::vector<uint32_t>::const_iterator detid=detids.begin();detid!=detids.end();++detid) {
312 
313  int nchannideal = reader->getNumberOfApvsAndStripLength(*detid).first*128;
314  // int nchannreal = reader->getNumberOfApvsAndStripLength(*detid).first*128;
315  int nchannreal = 0;
316  for(int strip = 0; strip < nchannideal; ++strip) {
317  if(!quality->IsStripBad(*detid,strip)) ++nchannreal;
318  }
319 
320 
321  for(std::map<unsigned int,DetIdSelector>::const_iterator sel=m_wantedsubdets.begin();sel!=m_wantedsubdets.end();++sel) {
322 
323  if(sel->second.isSelected(*detid)) {
324  if(m_nchannels_ideal && *m_nchannels_ideal) (*m_nchannels_ideal)->Fill(sel->first,nchannideal);
325  if(m_nchannels_real && *m_nchannels_real) (*m_nchannels_real)->Fill(sel->first,nchannreal);
326  }
327  }
328 
329  }
330 
331 
333  iSetup.get<SiPixelQualityRcd>().get("",pxlquality);
334 
335 
337 
338  const std::vector<uint32_t>& pxldetids = pxlreader.getAllDetIds();
339 
340  for(std::vector<uint32_t>::const_iterator detid=pxldetids.begin();detid!=pxldetids.end();++detid) {
341 
342  int nchannideal = pxlreader.getDetUnitDimensions(*detid).first*pxlreader.getDetUnitDimensions(*detid).second;
343  int nchannreal = 0;
344  if(!pxlquality->IsModuleBad(*detid)) {
345  nchannreal = pxlreader.getDetUnitDimensions(*detid).first*pxlreader.getDetUnitDimensions(*detid).second;
346  }
347  /*
348  int nchannreal = 0;
349  for(int strip = 0; strip < nchannideal; ++strip) {
350  if(!quality->IsStripBad(*detid,strip)) ++nchannreal;
351  }
352  */
353 
354  for(std::map<unsigned int,DetIdSelector>::const_iterator sel=m_wantedsubdets.begin();sel!=m_wantedsubdets.end();++sel) {
355 
356  if(sel->second.isSelected(*detid)) {
357  if(m_nchannels_ideal && *m_nchannels_ideal) (*m_nchannels_ideal)->Fill(sel->first,nchannideal);
358  if(m_nchannels_real && *m_nchannels_real) (*m_nchannels_real)->Fill(sel->first,nchannreal);
359  }
360  }
361 
362  }
363 
364 }
365 // ------------ method called once each job just after ending the event loop ------------
366 void
368 }
369 //define this as a plug-in
#define LogDebug(id)
OccupancyPlots(const edm::ParameterSet &)
TProfile ** m_zavedrphi
TProfile ** m_xavedz
T perp() const
Definition: PV3DBase.h:72
const std::vector< uint32_t > & getAllDetIds() const
TH1F ** m_nchannels_ideal
const std::pair< unsigned short, double > getNumberOfApvsAndStripLength(uint32_t detId) const
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:464
virtual void beginRun(const edm::Run &, const edm::EventSetup &) override
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
T y() const
Definition: PV3DBase.h:63
TProfile ** m_zavedr
auto vector_transform(std::vector< InputType > const &input, Function predicate) -> std::vector< typename std::remove_cv< typename std::remove_reference< decltype(predicate(input.front()))>::type >::type >
Definition: transform.h:11
virtual void beginJob() override
RunHistogramManager m_rhm
TH1F ** m_nchannels_real
std::vector< edm::EDGetTokenT< std::map< unsigned int, int > > > m_multiplicityMapTokens
std::map< unsigned int, DetIdSelector > m_wantedsubdets
m_fp(iConfig.getUntrackedParameter< edm::FileInPath >("file", edm::FileInPath("CalibTracker/SiPixelESProducers/data/PixelSkimmedGeometry.txt")))
int iEvent
Definition: GenABIO.cc:230
TProfile ** m_avex
const std::vector< uint32_t > & getAllDetIds() const
TProfile ** m_aveoccupancy
TProfile ** m_averadius
m_rhm(consumesCollector())
T z() const
Definition: PV3DBase.h:64
TProfile ** m_avez
TProfile ** m_xavedr
TProfile ** m_avey
#define LogTrace(id)
TProfile ** m_yavedr
m_occupancyMapTokens(edm::vector_transform(iConfig.getParameter< std::vector< edm::InputTag > >("occupancyMaps"), [this](edm::InputTag const &tag){return consumes< std::map< unsigned int, int > >(tag);}))
TProfile ** m_yavedz
TProfile ** m_avemultiplicity
m_wantedsubdets()
TProfile ** m_zavedz
const T & get() const
Definition: EventSetup.h:56
void beginRun(const edm::Run &iRun)
string const
Definition: compareJSON.py:14
std::vector< edm::EDGetTokenT< std::map< unsigned int, int > > > m_occupancyMapTokens
TProfile ** m_yavedrphi
edm::FileInPath m_fp
static int position[264][3]
Definition: ReadPGInfo.cc:509
std::string fullPath() const
Definition: FileInPath.cc:165
T x() const
Definition: PV3DBase.h:62
virtual void endJob() override
virtual void endRun(const edm::Run &, const edm::EventSetup &) override
Definition: Run.h:43
TProfile ** m_xavedrphi
std::vector< DetId > DetIdContainer
virtual void analyze(const edm::Event &, const edm::EventSetup &) override