CMS 3D CMS Logo

APVShotsAnalyzer.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: SiStripTools
4 // Class: APVShotsAnalyzer
5 //
13 //
14 // Original Author: Andrea Venturi
15 // Created: Tue Jul 19 11:56:00 CEST 2009
16 //
17 //
18 
19 // system include files
20 #include <memory>
21 
22 // user include files
23 #include "TH1F.h"
24 #include "TProfile.h"
25 #include <vector>
26 #include <string>
27 
31 
34 
36 
38 
41 
43 
46 
49 
52 
54 //******** Single include for the TkMap *************
56 //***************************************************
57 
58 //******** includes for the cabling *************
63 //***************************************************
64 
65 //
66 // class decleration
67 //
68 
69 class APVShotsAnalyzer : public edm::one::EDAnalyzer<edm::one::SharedResources, edm::one::WatchRuns> {
70 public:
71  explicit APVShotsAnalyzer(const edm::ParameterSet&);
72  ~APVShotsAnalyzer() override;
73 
74 private:
75  void beginJob() override;
76  void beginRun(const edm::Run&, const edm::EventSetup&) override;
77  void endRun(const edm::Run&, const edm::EventSetup&) override;
78  void analyze(const edm::Event&, const edm::EventSetup&) override;
79  void endJob() override;
80 
81  void updateDetCabling(const SiStripDetCablingRcd& iRcd);
82 
83  // ----------member data ---------------------------
84 
92  const SiStripDetCabling* _detCabling = nullptr;
94  bool _zs;
96  int _nevents;
97 
98  TH1F* _nShots;
99  TH1F* _whichAPV;
100  TH1F* _stripMult;
101  TH1F* _median;
103  TH1F* _fed;
105 
106  TProfile* _nShotsbxcycle;
107  TProfile* _nShotsdbx;
108  TProfile* _nShotsdbxincycle;
110  TProfile* _nShotsdbxprev;
112 
115 
117 
118  TH1F** _nShotsrun;
119  TProfile** _nShotsVsTimerun;
120  TH1F** _whichAPVrun;
122  TH1F** _medianrun;
124  TH1F** _fedrun;
125 
126  std::unique_ptr<TkHistoMap> tkhisto, tkhisto2;
127 };
128 
129 //
130 // constants, enums and typedefs
131 //
132 
133 //
134 // static data member definitions
135 //
136 
137 //
138 // constructors and destructor
139 //
141  : _digicollectionToken(
142  consumes<edm::DetSetVector<SiStripDigi> >(iConfig.getParameter<edm::InputTag>("digiCollection"))),
143  _historyProductToken(consumes<EventWithHistory>(iConfig.getParameter<edm::InputTag>("historyProduct"))),
144  _apvphasecollToken(consumes<APVCyclePhaseCollection>(iConfig.getParameter<edm::InputTag>("apvPhaseCollection"))),
145  _tkDetMapToken(esConsumes()),
146  _useCabling(iConfig.getUntrackedParameter<bool>("useCabling", true)),
147  _detCablingWatcher(_useCabling ? decltype(_detCablingWatcher){this, &APVShotsAnalyzer::updateDetCabling}
148  : decltype(_detCablingWatcher){}),
149  _detCablingToken(_useCabling ? decltype(_detCablingToken){esConsumes()} : decltype(_detCablingToken){}),
150  _phasepart(iConfig.getUntrackedParameter<std::string>("phasePartition", "None")),
151  _zs(iConfig.getUntrackedParameter<bool>("zeroSuppressed", true)),
152  _suffix(iConfig.getParameter<std::string>("mapSuffix")),
153  _nevents(0),
154  _rhm(consumesCollector()) {
155  //now do what ever initialization is needed
156  usesResource(TFileService::kSharedResource);
157 
158  if (!_zs)
159  _suffix += "_notZS";
160 
162 
163  _nShots = tfserv->make<TH1F>("nShots", "Number of Shots per event", 200, -0.5, 199.5);
164  _nShots->GetXaxis()->SetTitle("Shots");
165  _nShots->GetYaxis()->SetTitle("Events");
166  _nShots->StatOverflows(kTRUE);
167 
168  _whichAPV = tfserv->make<TH1F>("whichAPV", "APV with shots", 6, -0.5, 5.5);
169  _whichAPV->GetXaxis()->SetTitle("APV");
170  _whichAPV->GetYaxis()->SetTitle("Shots");
171 
172  _stripMult = tfserv->make<TH1F>("stripMultiplicity", "Shot Strip Multiplicity", 129, -0.5, 128.5);
173  _stripMult->GetXaxis()->SetTitle("Number of Strips");
174  _stripMult->GetYaxis()->SetTitle("Shots");
175 
176  _median = tfserv->make<TH1F>("median", "APV Shot charge median", 256, -0.5, 255.5);
177  _median->GetXaxis()->SetTitle("Charge [ADC]");
178  _median->GetYaxis()->SetTitle("Shots");
179 
180  _subDetector = tfserv->make<TH1F>("subDets", "SubDetector Shot distribution", 10, -0.5, 9.5);
181  _subDetector->GetYaxis()->SetTitle("Shots");
182 
183  _nShotsbxcycle = tfserv->make<TProfile>("nShotsBXcycle", "Number of shots vs APV cycle bin", 70, -0.5, 69.5);
184  _nShotsbxcycle->GetXaxis()->SetTitle("Event BX mod(70)");
185  _nShotsbxcycle->GetYaxis()->SetTitle("APV shots");
186 
187  _nShotsdbx = tfserv->make<TProfile>("nShotsDBX", "Number of shots vs #Delta(BX)", 1000, -0.5, 999.5);
188  _nShotsdbx->GetXaxis()->SetTitle("Event #Delta(BX)");
189  _nShotsdbx->GetYaxis()->SetTitle("APV shots");
190 
191  _nShotsdbxincycle =
192  tfserv->make<TProfile>("nShotsDBXincycle", "Number of shots vs #Delta(BX) w.r.t. APV cycle", 1000, -0.5, 999.5);
193  _nShotsdbxincycle->GetXaxis()->SetTitle("Event #Delta(BX) w.r.t. APV cycle");
194  _nShotsdbxincycle->GetYaxis()->SetTitle("APV shots");
195 
196  _nShotsbxcycleprev =
197  tfserv->make<TProfile>("nShotsBXcycleprev", "Number of shots vs APV cycle bin of previous L1A", 70, -0.5, 69.5);
198  _nShotsbxcycleprev->GetXaxis()->SetTitle("Previous L1A BX mod(70)");
199  _nShotsbxcycleprev->GetYaxis()->SetTitle("APV shots");
200 
201  _nShotsdbxprev =
202  tfserv->make<TProfile>("nShotsDBXprev", "Number of shots vs #Delta(BX) of previous L1A", 1000, -0.5, 999.5);
203  _nShotsdbxprev->GetXaxis()->SetTitle("Previous L1A #Delta(BX)");
204  _nShotsdbxprev->GetYaxis()->SetTitle("APV shots");
205 
206  _nShotsdbxincycleprev = tfserv->make<TProfile>(
207  "nShotsDBXincycleprev", "Number of shots vs #Delta(BX) w.r.t. APV cycle of previous L1A", 1000, -0.5, 999.5);
208  _nShotsdbxincycleprev->GetXaxis()->SetTitle("Previous L1A #Delta(BX) w.r.t. APV cycle");
209  _nShotsdbxincycleprev->GetYaxis()->SetTitle("APV shots");
210 
211  _nShotsrun = _rhm.makeTH1F("nShotsrun", "Number of Shots per event", 200, -0.5, 199.5);
212  _nShotsVsTimerun =
213  _rhm.makeTProfile("nShotsVsTimerun", "Mean number of shots vs orbit number", 4 * 500, 0, 500 * 262144);
214  _whichAPVrun = _rhm.makeTH1F("whichAPVrun", "APV with shots", 6, -0.5, 5.5);
215  _stripMultrun = _rhm.makeTH1F("stripMultiplicityrun", "Shot Strip Multiplicity", 129, -0.5, 128.5);
216  _medianrun = _rhm.makeTH1F("medianrun", "APV Shot charge median", 256, -0.5, 255.5);
217  _subDetectorrun = _rhm.makeTH1F("subDetsrun", "SubDetector Shot distribution", 10, -0.5, 9.5);
218 
219  if (_useCabling) {
220  _fed = tfserv->make<TH1F>("fed", "FED Shot distribution", 440, 50, 490);
221  _fed->GetYaxis()->SetTitle("Shots");
222  _fedrun = _rhm.makeTH1F("fedrun", "FED Shot distribution", 440, 50, 490);
223 
224  _channelvsfed =
225  tfserv->make<TH2F>("channelvsfed", "Channel vs FED Shot distribution", 440, 50, 490, 97, -0.5, 96.5);
226  _channelvsfed->GetXaxis()->SetTitle("FED");
227  _channelvsfed->GetYaxis()->SetTitle("Channel");
228 
229  _nShotsVsFED =
230  tfserv->make<TH2F>("nShotsVsFED", "Number of Shots per event vs fedid", 440, 50, 490, 200, -0.5, 199.5);
231  _nShotsVsFED->GetXaxis()->SetTitle("fedId");
232  _nShots->GetYaxis()->SetTitle("Shots");
233  _nShots->GetZaxis()->SetTitle("Events");
234  _nShotsVsFED->StatOverflows(kTRUE);
235 
236  _medianVsFED = tfserv->make<TH2F>("medianVsFED", "APV Shot charge median vs fedid", 440, 50, 490, 256, -0.5, 255.5);
237  _medianVsFED->GetXaxis()->SetTitle("fedId");
238  _medianVsFED->GetYaxis()->SetTitle("Charge [ADC]");
239  _median->GetZaxis()->SetTitle("Shots");
240  }
241 
242  tkhisto = nullptr;
243  tkhisto2 = nullptr;
244 }
245 
247  // do anything here that needs to be done at desctruction time
248  // (e.g. close files, deallocate resources etc.)
249  if (_detCabling)
250  _detCabling = nullptr;
251 }
252 
253 //
254 // member functions
255 //
256 
257 // ------------ method called to for each event ------------
259  using namespace edm;
260 
261  if (_useCabling) {
262  //retrieve cabling
263  _detCablingWatcher.check(iSetup);
264  }
265 
266  if (!(tkhisto && tkhisto2)) {
267  const TkDetMap* tkDetMap = &iSetup.getData(_tkDetMapToken);
268  tkhisto = std::make_unique<TkHistoMap>(tkDetMap, "ShotMultiplicity", "ShotMultiplicity", -1);
269  tkhisto2 = std::make_unique<TkHistoMap>(tkDetMap, "StripMultiplicity", "StripMultiplicity", -1);
270  }
271 
272  _nevents++;
273 
275  iEvent.getByToken(_historyProductToken, he);
276 
278  iEvent.getByToken(_apvphasecollToken, apvphase);
279 
280  int thephase = APVCyclePhaseCollection::invalid;
281  if (apvphase.isValid() && !apvphase.failedToGet()) {
282  thephase = apvphase->getPhase(_phasepart);
283  }
284  bool isphaseok = (thephase != APVCyclePhaseCollection::invalid && thephase != APVCyclePhaseCollection::multiphase &&
286 
288  iEvent.getByToken(_digicollectionToken, digis);
289 
290  // loop on detector with digis
291 
292  int nshots = 0;
293  std::vector<int> nshotsperFed;
294 
295  const uint16_t lNumFeds = sistrip::FED_ID_MAX - sistrip::FED_ID_MIN + 1;
296  if (_useCabling) {
297  nshotsperFed.resize(lNumFeds, 0);
298  }
299 
300  APVShotFinder apvsf(*digis, _zs);
301  const std::vector<APVShot>& shots = apvsf.getShots();
302 
303  for (std::vector<APVShot>::const_iterator shot = shots.begin(); shot != shots.end(); ++shot) {
304  if (shot->isGenuine()) {
305  //get the fedid from the detid
306 
307  uint32_t det = shot->detId();
308  if (_useCabling) {
309  int apvPair = shot->apvNumber() / 2;
310  LogDebug("APVPair") << apvPair;
311 
312  const FedChannelConnection& theConn = _detCabling->getConnection(det, apvPair);
313 
314  int lChannelId = -1;
315  int thelFEDId = -1;
316  if (theConn.isConnected()) {
317  lChannelId = theConn.fedCh();
318  thelFEDId = theConn.fedId();
319  } else {
320  edm::LogWarning("ConnectionNotFound")
321  << "connection of det " << det << " APV pair " << apvPair << " not found";
322  }
323  LogDebug("FED channels") << thelFEDId << " " << lChannelId;
324 
325  const std::vector<const FedChannelConnection*>& conns = _detCabling->getConnections(det);
326 
327  if (conns.empty())
328  continue;
329  uint16_t lFedId = 0;
330  for (uint32_t ch = 0; ch < conns.size(); ch++) {
331  if (conns[ch] && conns[ch]->isConnected()) {
332  LogDebug("Dump") << *(conns[ch]);
333  LogDebug("ReadyForFEDid") << "Ready for FED id " << ch;
334  lFedId = conns[ch]->fedId();
335  LogDebug("FEDid") << "obtained FED id " << ch << " " << lFedId;
336  //uint16_t lFedCh = conns[ch]->fedCh();
337 
338  if (lFedId < sistrip::FED_ID_MIN || lFedId > sistrip::FED_ID_MAX) {
339  edm::LogWarning("InvalidFEDid") << lFedId << " for detid " << det << " connection " << ch;
340  continue;
341  } else
342  break;
343  }
344  }
345  if (lFedId < sistrip::FED_ID_MIN || lFedId > sistrip::FED_ID_MAX) {
346  edm::LogWarning("NoValidFEDid") << lFedId << "found for detid " << det;
347  continue;
348  }
349 
350  if (lFedId != thelFEDId) {
351  edm::LogWarning("FEDidMismatch") << " Mismatch in FED id for det " << det << " APV pair " << apvPair << " : "
352  << lFedId << " vs " << thelFEDId;
353  }
354 
355  LogDebug("FillingArray") << nshotsperFed.size() << " " << lFedId - sistrip::FED_ID_MIN;
356  ++nshotsperFed[lFedId - sistrip::FED_ID_MIN];
357 
358  LogDebug("ReadyToBeFilled") << " ready to be filled with " << thelFEDId << " " << lChannelId;
359  _channelvsfed->Fill(thelFEDId, lChannelId);
360  LogDebug("Filled") << " filled with " << thelFEDId << " " << lChannelId;
361 
362  _fed->Fill(lFedId);
363 
364  if (_fedrun && *_fedrun)
365  (*_fedrun)->Fill(lFedId);
366  _medianVsFED->Fill(lFedId, shot->median());
367  }
368 
369  ++nshots;
370 
371  _whichAPV->Fill(shot->apvNumber());
372  _median->Fill(shot->median());
373  _stripMult->Fill(shot->nStrips());
374  _subDetector->Fill(shot->subDet());
375 
376  if (_whichAPVrun && *_whichAPVrun)
377  (*_whichAPVrun)->Fill(shot->apvNumber());
378  if (_medianrun && *_medianrun)
379  (*_medianrun)->Fill(shot->median());
381  (*_stripMultrun)->Fill(shot->nStrips());
383  (*_subDetectorrun)->Fill(shot->subDet());
384 
385  tkhisto2->fill(det, shot->nStrips());
386  ;
387  tkhisto->add(det, 1);
388  }
389  }
390 
391  _nShots->Fill(nshots);
392  if (_nShotsrun && *_nShotsrun)
393  (*_nShotsrun)->Fill(nshots);
394 
395  _nShotsdbx->Fill(he->deltaBX(), nshots);
396  _nShotsdbxprev->Fill(he->deltaBX(), nshots);
397  if (isphaseok) {
398  _nShotsbxcycle->Fill(he->absoluteBXinCycle(thephase) % 70, nshots);
399  _nShotsdbxincycle->Fill(he->deltaBXinCycle(thephase), nshots);
400  _nShotsbxcycleprev->Fill(he->absoluteBXinCycle(1, thephase) % 70, nshots);
401  _nShotsdbxincycleprev->Fill(he->deltaBXinCycle(1, 2, thephase), nshots);
402  }
403 
404  if (_useCabling) {
405  for (uint16_t lFed(0); lFed < lNumFeds; lFed++) {
406  _nShotsVsFED->Fill(lFed + sistrip::FED_ID_MIN, nshotsperFed[lFed]);
407  }
408  }
409 
411  (*_nShotsVsTimerun)->Fill(iEvent.orbitNumber(), nshots);
412 }
413 
415  _rhm.beginRun(iRun);
416 
417  if (_nShotsrun && *_nShotsrun) {
418  (*_nShotsrun)->GetXaxis()->SetTitle("Shots");
419  (*_nShotsrun)->GetYaxis()->SetTitle("Events");
420  (*_nShotsrun)->StatOverflows(kTRUE);
421  }
422 
424  (*_nShotsVsTimerun)->GetXaxis()->SetTitle("Orbit");
425  (*_nShotsVsTimerun)->GetYaxis()->SetTitle("Number of Shots");
426  (*_nShotsVsTimerun)->SetCanExtend(TH1::kXaxis);
427  }
428 
429  if (_whichAPVrun && *_whichAPVrun) {
430  (*_whichAPVrun)->GetXaxis()->SetTitle("APV");
431  (*_whichAPVrun)->GetYaxis()->SetTitle("Shots");
432  }
433 
434  if (_stripMultrun && *_stripMultrun) {
435  (*_stripMultrun)->GetXaxis()->SetTitle("Number of Strips");
436  (*_stripMultrun)->GetYaxis()->SetTitle("Shots");
437  }
438 
439  if (_medianrun && *_medianrun) {
440  (*_medianrun)->GetXaxis()->SetTitle("Charge [ADC]");
441  (*_medianrun)->GetYaxis()->SetTitle("Shots");
442  }
443 
445  (*_subDetectorrun)->GetYaxis()->SetTitle("Shots");
446  }
447 
448  if (_useCabling) {
449  if (_fedrun && *_fedrun) {
450  (*_fedrun)->GetYaxis()->SetTitle("Shots");
451  }
452  }
453 }
454 
456 
457 // ------------ method called once each job just before starting event loop ------------
459 
460 // ------------ method called once each job just after ending the event loop ------------
462  edm::LogInfo("EndOfJob") << _nevents << " analyzed events";
463 
465  TrackerMap tkmap, tkmap2;
466 
467  tkmap.setPalette(1);
468  tkmap2.setPalette(1);
469  tkhisto->dumpInTkMap(&tkmap);
470  tkhisto2->dumpInTkMap(&tkmap2);
471  std::string tkshotmultmapname = "ShotMultiplicity_" + _suffix + ".png";
472  tkmap.save(true, 0, 0, tkshotmultmapname);
473  std::string tkstripmultmapname = "StripMultiplicity_" + _suffix + ".png";
474  tkmap2.save(true, 0, 0, tkstripmultmapname);
475 
476  std::string rootmapname = "TKMap_" + _suffix + ".root";
477  tkhisto->save(rootmapname);
478  tkhisto2->save(rootmapname);
479 }
480 
482 
483 //define this as a plug-in
static const std::string kSharedResource
Definition: TFileService.h:76
void beginJob() override
ESGetTokenH3DDVariant esConsumes(std::string const &Record, edm::ConsumesCollector &)
Definition: DeDxTools.cc:283
std::unique_ptr< TkHistoMap > tkhisto
static const uint16_t FED_ID_MIN
T const & getData(const ESGetToken< T, R > &iToken) const noexcept(false)
Definition: EventSetup.h:119
const std::vector< const FedChannelConnection * > & getConnections(uint32_t det_id) const
TProfile ** _nShotsVsTimerun
edm::ESGetToken< SiStripDetCabling, SiStripDetCablingRcd > _detCablingToken
void endRun(const edm::Run &, const edm::EventSetup &) override
TProfile * _nShotsbxcycleprev
TProfile * _nShotsdbxincycle
edm::ESWatcher< SiStripDetCablingRcd > _detCablingWatcher
const FedChannelConnection & getConnection(uint32_t det_id, unsigned short apv_pair) const
bool failedToGet() const
Definition: HandleBase.h:72
int iEvent
Definition: GenABIO.cc:224
APVShotsAnalyzer(const edm::ParameterSet &)
edm::EDGetTokenT< EventWithHistory > _historyProductToken
Class containning control, module, detector and connection information, at the level of a FED channel...
edm::ESGetToken< TkDetMap, TrackerTopologyRcd > _tkDetMapToken
void updateDetCabling(const SiStripDetCablingRcd &iRcd)
void setPalette(int numpalette)
Definition: TrackerMap.h:154
TProfile * _nShotsbxcycle
void save(bool print_total=true, float minval=0., float maxval=0., std::string s="svgmap.svg", int width=1500, int height=800)
Definition: TrackerMap.cc:843
const uint16_t & fedId() const
void beginRun(const edm::Run &, const edm::EventSetup &) override
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
const SiStripDetCabling * _detCabling
The cabling object.
A Digi for the silicon strip detector, containing both strip and adc information, and suitable for st...
Definition: SiStripDigi.h:12
void endJob() override
Log< level::Info, false > LogInfo
void beginRun(const edm::Run &iRun)
bool check(const edm::EventSetup &iSetup)
Definition: ESWatcher.h:57
bool isValid() const
Definition: HandleBase.h:70
TProfile * _nShotsdbxincycleprev
const std::vector< APVShot > & getShots() const
const std::string _phasepart
const int getPhase(const std::string partition) const
HLT enums.
TProfile * _nShotsdbxprev
T * make(const Args &...args) const
make new ROOT object
Definition: TFileService.h:64
RunHistogramManager _rhm
static const uint16_t FED_ID_MAX
~APVShotsAnalyzer() override
Log< level::Warning, false > LogWarning
const uint16_t & fedCh() const
void analyze(const edm::Event &, const edm::EventSetup &) override
ProductT const & get(ESGetToken< ProductT, DepRecordT > const &iToken) const
std::unique_ptr< TkHistoMap > tkhisto2
edm::EDGetTokenT< APVCyclePhaseCollection > _apvphasecollToken
edm::EDGetTokenT< edm::DetSetVector< SiStripDigi > > _digicollectionToken
Definition: Run.h:45
#define LogDebug(id)