CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Attributes
CastorPSMonitor Class Reference

#include <CastorPSMonitor.h>

Inheritance diagram for CastorPSMonitor:
CastorBaseMonitor

Public Member Functions

void beginRun (const edm::Run &iRun, const edm::EventSetup &iSetup)
 
 CastorPSMonitor ()
 
void processEvent (const CastorDigiCollection &castorDigis, const CastorDbService &conditions, const std::vector< HcalGenericDetId > &listEMap, int iBunch, float PedSigmaInChannel[14][16])
 
void reset ()
 
void setup (const edm::ParameterSet &ps, DQMStore *dbe)
 
 ~CastorPSMonitor ()
 
- Public Member Functions inherited from CastorBaseMonitor
 CastorBaseMonitor ()
 
virtual void clearME ()
 
virtual void done ()
 
bool getDiagnostics () const
 
int getVerbosity () const
 
void setDiagnostics (bool myval)
 
void setVerbosity (int verb)
 
bool vetoCell (HcalCastorDetId id)
 
virtual ~CastorBaseMonitor ()
 

Private Attributes

std::vector< NewBunchBunches_
 
struct {
   MonitorElement *   meDigi_pulseBX
 
castorDigiHists
 
MonitorElementChannelSummaryMap
 
MonitorElementDigiOccupancyMap
 
bool doPerChannel_
 
double firstRegionThreshold_
 
bool firstTime_
 
double fraction
 
TH2F * h_reportSummaryMap
 
int ievt_
 
MonitorElementmeEvt_
 
double numberSigma_
 
int numOK
 
bool offline_
 
MonitorElementoverallStatus
 
std::map< int, MonitorElement * > PSsector
 
MonitorElementreportSummary
 
MonitorElementreportSummaryMap
 
int saturatedMap [14][16]
 
double saturatedThreshold_
 
MonitorElementSaturationSummaryMap
 
double secondRegionThreshold_
 
double status
 
double statusRS
 
double statusSaturated
 
double sumDigiForEachChannel [14][16]
 
double thirdRegionThreshold_
 

Additional Inherited Members

- Protected Attributes inherited from CastorBaseMonitor
std::string baseFolder_
 
edm::CPUTimer cpu_timer
 
int fVerbosity
 
DQMStorem_dbe
 
bool makeDiagnostics
 
std::string rootFolder_
 
bool showTiming
 

Detailed Description

Definition at line 14 of file CastorPSMonitor.h.

Constructor & Destructor Documentation

CastorPSMonitor::CastorPSMonitor ( )

Definition at line 50 of file CastorPSMonitor.cc.

References doPerChannel_, firstRegionThreshold_, ievt_, secondRegionThreshold_, status, statusRS, and statusSaturated.

50  {
51  doPerChannel_ = true;
52  ievt_=0;
55  status=-99;
56  statusRS=-99;
57  statusSaturated=-99;
58 }
double secondRegionThreshold_
double firstRegionThreshold_
CastorPSMonitor::~CastorPSMonitor ( )

Definition at line 63 of file CastorPSMonitor.cc.

63  {
64 }

Member Function Documentation

void CastorPSMonitor::beginRun ( const edm::Run iRun,
const edm::EventSetup iSetup 
)

Definition at line 113 of file CastorPSMonitor.cc.

References CastorBaseMonitor::baseFolder_, DQMStore::book1D(), DQMStore::book2D(), DQMStore::bookFloat(), DQMStore::bookInt(), castorDigiHists, ChannelSummaryMap, gather_cfg::cout, DigiOccupancyMap, MonitorElement::Fill(), fraction, CastorBaseMonitor::fVerbosity, MonitorElement::getTH2F(), h_reportSummaryMap, i, CastorBaseMonitor::m_dbe, meEvt_, mergeVDriftHistosByStation::name, NULL, offline_, overallStatus, PSsector, reportSummary, reportSummaryMap, CastorBaseMonitor::rootFolder_, SaturationSummaryMap, and DQMStore::setCurrentFolder().

Referenced by CastorMonitorModule::beginRun().

114  {
115  if(fVerbosity>0) std::cout << "CastorPSMonitor::beginRun (start)" << std::endl;
116 
117  if ( m_dbe !=NULL )
118  {
120 
122  meEvt_ = m_dbe->bookInt("PS Event Number");
123  castorDigiHists.meDigi_pulseBX = m_dbe->book1D("CASTOR average pulse in bunch crossings","CASTOR average pulse in bunch crossings", 3600, -0.5, 3600);
124  TH1F* h_meDigi_pulseBX = castorDigiHists.meDigi_pulseBX->getTH1F();
125  h_meDigi_pulseBX->GetXaxis()->SetTitle("orbit");
126 
127  //---- Pulse Shape per sector
128  char name[1024];
129  for(int i=0; i<16; i++)
130  {
131  sprintf(name,"Castor Pulse Shape for sector=%d (in all 14 modules)",i+1);
132  PSsector[i] = m_dbe->book1D(name,name,140,-0.5,139.5);
133  }
134 
136  DigiOccupancyMap = m_dbe->book2D("CASTOR Digi Occupancy Map","CASTOR Digi Occupancy Map",14,0.0,14.0,16,0.0,16.0);
138  ChannelSummaryMap = m_dbe->book2D("CASTOR Digi ChannelSummaryMap","CASTOR Digi ChannelSummaryMap",14,0.0,14.0,20,0.0,20.0); // put 20 instead of 16 to get some space for the legend
139 
142  SaturationSummaryMap = m_dbe->book2D("CASTOR Digi SaturationSummaryMap","CASTOR Digi SaturationSummaryMap",14,0.0,14.0,20,0.0,20.0); // put 20 instead of 16 to get some space for the legend
143 
144 
145 
147  m_dbe->setCurrentFolder(rootFolder_+"EventInfo"); //this is saved in the EventInfo folder so it can appear in the main page of the DQM
148  reportSummary = m_dbe->bookFloat("reportSummary");
149  reportSummaryMap = m_dbe->book2D("reportSummaryMap","CASTOR reportSummaryMap",14,0.0,14.0,16,0.0,16.0);
150  if(offline_){
152  h_reportSummaryMap->SetOption("textcolz");
153  h_reportSummaryMap->GetXaxis()->SetTitle("module");
154  h_reportSummaryMap->GetYaxis()->SetTitle("sector");
155  }
156  m_dbe->setCurrentFolder(rootFolder_+"EventInfo/reportSummaryContents"); //this is saved in the EventInfo folder so it can appear in the main page of the DQM
157  overallStatus = m_dbe->bookFloat("fraction of good channels");
159  }
160 
161  else
162  {
163  if(fVerbosity>0) std::cout << "CastorPSMonitor::beginRun - NO DQMStore service" << std::endl;
164  }
165 
166  if(fVerbosity>0) std::cout << "CastorPSMonitor::beginRun (end)" << std::endl;
167  }
int i
Definition: DBlmapReader.cc:9
TH2F * h_reportSummaryMap
MonitorElement * book1D(const char *name, const char *title, int nchX, double lowX, double highX)
Book 1D histogram.
Definition: DQMStore.cc:964
MonitorElement * SaturationSummaryMap
MonitorElement * DigiOccupancyMap
MonitorElement * meEvt_
#define NULL
Definition: scimark2.h:8
MonitorElement * reportSummary
MonitorElement * bookFloat(const char *name)
Book float.
Definition: DQMStore.cc:901
void Fill(long long x)
struct CastorPSMonitor::@277 castorDigiHists
std::string baseFolder_
MonitorElement * ChannelSummaryMap
MonitorElement * reportSummaryMap
std::string rootFolder_
tuple cout
Definition: gather_cfg.py:121
MonitorElement * overallStatus
std::map< int, MonitorElement * > PSsector
TH2F * getTH2F(void) const
MonitorElement * bookInt(const char *name)
Book int.
Definition: DQMStore.cc:871
MonitorElement * book2D(const char *name, const char *title, int nchX, double lowX, double highX, int nchY, double lowY, double highY)
Book 2D histogram.
Definition: DQMStore.cc:1092
void setCurrentFolder(const std::string &fullpath)
Definition: DQMStore.cc:677
void CastorPSMonitor::processEvent ( const CastorDigiCollection castorDigis,
const CastorDbService conditions,
const std::vector< HcalGenericDetId > &  listEMap,
int  iBunch,
float  PedSigmaInChannel[14][16] 
)

Definition at line 173 of file CastorPSMonitor.cc.

References HcalQIESample::adc(), edm::SortedCollection< T, SORT >::begin(), Bunches_, HcalQIESample::capid(), castorDigiHists, ChannelSummaryMap, CastorQIECoder::charge(), gather_cfg::cout, CastorBaseMonitor::cpu_timer, edm::CPUTimer::cpuTime(), NewBunch::detid, DigiOccupancyMap, edm::SortedCollection< T, SORT >::end(), MonitorElement::Fill(), firstRegionThreshold_, firstTime_, fraction, CastorBaseMonitor::fVerbosity, CastorDbService::getCastorCalibrations(), CastorDbService::getCastorCoder(), CastorDbService::getCastorShape(), MonitorElement::getTH2F(), i, CastorDataFrame::id(), ievt_, j, gen::k, CastorBaseMonitor::m_dbe, meEvt_, python.rootplot.argparse::module, numberSigma_, numOK, overallStatus, CastorCalibrations::pedestal(), CastorDataFrame::presamples(), PSsector, DetId::rawId(), reportSummary, reportSummaryMap, edm::CPUTimer::reset(), CastorDataFrame::sample(), saturatedMap, saturatedThreshold_, SaturationSummaryMap, secondRegionThreshold_, CastorBaseMonitor::showTiming, CastorDataFrame::size(), edm::SortedCollection< T, SORT >::size(), edm::CPUTimer::start(), status, statusRS, statusSaturated, edm::CPUTimer::stop(), AlCaHLTBitMon_QueryRunRegistry::string, sumDigiForEachChannel, thirdRegionThreshold_, NewBunch::tsAdc, NewBunch::tsCapId, NewBunch::tsfC, and NewBunch::usedflag.

Referenced by CastorMonitorModule::analyze().

174  {
175  if(fVerbosity>0) std::cout << "CastorPSMonitor::processEvent (begin)" << std::endl;
176 
177  if(!m_dbe) {
178  if(fVerbosity>0) std::cout <<"CastorPSMonitor::processEvent => DQMStore not instantiated !!!"<<std::endl;
179  return;
180  }
181 
182  meEvt_->Fill(ievt_);
183 
185  ievt_++;
186 
187  status = -99; statusRS = -99; statusSaturated=-99;
188 
190  const CastorQIEShape* shape = conditions.getCastorShape();
191 
192  if(firstTime_)
193  {
194  //===> show the array of sigmas
195  for (int i=0; i<14; i++){
196  for (int k=0; k<16; k++){
197  if(fVerbosity>1) std::cout<< "module:"<<i+1<< " sector:"<<k+1<< " Sigma=" << PedSigmaInChannel[i][k] << std::endl;
198  }
199  }
200  for (std::vector<HcalGenericDetId>::const_iterator it = listEMap.begin(); it != listEMap.end(); it++)
201  {
202  HcalGenericDetId mygenid(it->rawId());
203  if(mygenid.isHcalCastorDetId())
204  {
205  NewBunch myBunch;
206  HcalCastorDetId chanid(mygenid.rawId());
207  myBunch.detid = chanid;
208  myBunch.usedflag = false;
210  type = "CASTOR";
211  for(int i = 0; i != 20; i++)
212  {
213  myBunch.tsCapId[i] = 0;
214  myBunch.tsAdc[i] = 0;
215  myBunch.tsfC[i] = 0.0;
216  }
217  Bunches_.push_back(myBunch);
218  }
219  }
220 
221  firstTime_ = false;
222  }
223 
224 
225  if(castorDigis.size()>0) {
227  int firstTS = 0;
228  int lastTS = 9;
229  std::vector<NewBunch>::iterator bunch_it;
230  int numBunches = 0;
231  bool firstDigi = true;
232  bool saturated = false;
233 
235  for(CastorDigiCollection::const_iterator j = castorDigis.begin(); j != castorDigis.end(); j++)
236  {
237 
238  const CastorDataFrame digi = (const CastorDataFrame)(*j);
239  if ( lastTS+1 > digi.size() ) lastTS = digi.size()-1;
240  for(bunch_it = Bunches_.begin(); bunch_it != Bunches_.end(); bunch_it++)
241  if(bunch_it->detid.rawId() == digi.id().rawId()) break;
242  bunch_it->usedflag = true;
243 
244  numBunches++;
245  //
246  //---- Skip noisy channels present in 2009 beam data:
247  // if ( (bunch_it->detid.sector() == 16 && bunch_it->detid.module() == 6) ||
248  // (bunch_it->detid.sector() == 3 && bunch_it->detid.module() == 8) ||
249  // (bunch_it->detid.sector() == 8 && bunch_it->detid.module() == 8) ) continue;
250  //
251 
252  if ( lastTS+1 > digi.size() ) lastTS = digi.size()-1;
253 
255  const CastorCalibrations& calibrations=conditions.getCastorCalibrations(digi.id().rawId());
256 
258  double sumDigi=0.; double sumDigiADC=0.; int bxTS=-9999; saturated = false;
259 
261  for(int ts = firstTS; ts != lastTS+1; ts++)
262  {
263  if (firstDigi) {
264  bxTS = (iBunch+ts-1-digi.presamples());
265  if ( bxTS < 0 ) bxTS += 3563;
266  bxTS = ( bxTS % 3563 ) + 1;
267  if(fVerbosity>1) std::cout << "!!! " << bxTS << " " << iBunch <<" "<< ts << " " << digi.presamples() << std::endl;
268  }
269 
270  const CastorQIECoder* coder = conditions.getCastorCoder(digi.id().rawId());
271  bunch_it->tsCapId[ts] = digi.sample(ts).capid();
272  bunch_it->tsAdc[ts] = digi.sample(ts).adc();
273 
275  double charge_fC = coder->charge(*shape, digi.sample(ts).adc(), digi.sample(ts).capid());
276 
278  bunch_it->tsfC[ts] = charge_fC - calibrations.pedestal(digi.sample(ts).capid());
280  castorDigiHists.meDigi_pulseBX->Fill(static_cast<double>(bxTS),(bunch_it->tsfC[ts])/224.);
282 
283  // PK: do not normalize histograms - now it is normalized
284  PSsector[bunch_it->detid.sector()-1]->Fill(10*(bunch_it->detid.module()-1)+ts, bunch_it->tsfC[ts]/double(ievt_));
285  // PSsector[bunch_it->detid.sector()-1]->Fill(10*(bunch_it->detid.module()-1)+ts, bunch_it->tsfC[ts]);
286 
288  sumDigi += bunch_it->tsfC[ts]; //std::cout<< " signal(fC) in TS:"<<ts << " =" << bunch_it->tsfC[ts] << std::endl;
290  sumDigiADC += bunch_it->tsAdc[ts]; //std::cout<< " signal(ADC) in TS:"<<ts << " =" << bunch_it->tsAdc[ts] << std::endl;
291 
293  if(bunch_it->tsAdc[ts]>126.95) {
294  saturated = true;
295  if(fVerbosity>1)
296  std::cout<< "WARNING: ==> Module:" << bunch_it->detid.module() << " Sector:" << bunch_it->detid.sector() << " SATURATED !!! in TS:"<< ts <<std::endl;
297  }
298 
299  } //-- end of the loop for time slices
300 
302  sumDigiForEachChannel[bunch_it->detid.module()-1][bunch_it->detid.sector()-1] += sumDigi;
303 
305  if(saturated) saturatedMap[bunch_it->detid.module()-1][bunch_it->detid.sector()-1] += 1;
306 
308  DigiOccupancyMap->Fill(bunch_it->detid.module()-1,bunch_it->detid.sector()-1, double(sumDigi/10)); //std::cout<< "=====> sumDigi=" << sumDigi << std::endl;
309 
310 
311  if(fVerbosity>1){
312  std::cout<< "==> Module:" << bunch_it->detid.module() << " Sector:" << bunch_it->detid.sector() << std::endl;
313  std::cout<< "==> Total charge in fC:" << sumDigi << std::endl;
314  std::cout<< "==> Total charge in ADC:" << sumDigiADC << std::endl;
315  }
316 
317  firstDigi = false;
318  } //-- end of the loop over digis
319 
320 
321 
322 
323 
327 
328 
329  // if( ievt_ == 25 || ievt_ % 500 == 0 ) { // no event selection - get all events
330 
331  numOK = 0;
332 
334  for (int sector=0; sector<16; sector++){
335  for (int module=0; module<14; module++){
336 
338  firstRegionThreshold_ = (-1)*(numberSigma_*PedSigmaInChannel[module][sector]);
339  secondRegionThreshold_ = numberSigma_*PedSigmaInChannel[module][sector] ;
340 
341 
343  if(double(sumDigiForEachChannel[module][sector]/(10*ievt_)) < firstRegionThreshold_ )
344  { status = -1.; statusRS=0.; }
345 
348  { status = 0.25; statusRS=0.95; }
349 
352  { status = 1.; statusRS=1.0; }
353 
354  //---- leave it out for the time being
356  // if(double(sumDigiForEachChannel[module][sector]/(10*ievt_)) > thirdRegionThreshold_ )
357  // { status = -0.25; statusRS=0.88 ; }
358 
359  //-- define the fraction of saturated events for a particular channel
360  double fractionSaturated = double(saturatedMap[module][sector])/double(ievt_) ;
362  if(fVerbosity>1) std::cout<< "==> module: " << module << " sector: " << sector << " ==> N_saturation:" << saturatedMap[module][sector] << " events:"<< ievt_ << " fraction:" << fractionSaturated << std::endl;
363 
364  if( fractionSaturated > saturatedThreshold_ )
365  { status = -0.25; statusRS=0.88 ; statusSaturated=-1.0; }
366 
368  if( saturatedMap[module][sector] > 0 && fractionSaturated < saturatedThreshold_ )
369  { statusSaturated= 0; }
370 
372  if( saturatedMap[module][sector] == 0 )
373  { statusSaturated= 1; }
374 
376  ChannelSummaryMap->getTH2F()->SetBinContent(module+1,sector+1,status);
377 
379  reportSummaryMap->getTH2F()->SetBinContent(module+1,sector+1,statusRS);
380 
382  SaturationSummaryMap->getTH2F()->SetBinContent(module+1,sector+1,double(statusSaturated));
383 
385  if ( statusRS > 0.9) numOK++;
386 
387  } //-- end of the loop over the modules
388  } //-- end of the loop over the sectors
389 
391  fraction=double(numOK)/224;
393 
394  // } //-- end of if for the number of events // update ( PK ):
395 
396 
398  for (int sector=16; sector<20; sector++){
399  for (int module=0; module<14; module++){
400  ChannelSummaryMap->getTH2F()->SetBinContent(module+1,sector+1,99);
401  }
402  }
404  for (int sector=16; sector<20; sector++){
405  for (int module=0; module<14; module++){
406  SaturationSummaryMap->getTH2F()->SetBinContent(module+1,sector+1, 99);
407  }
408  }
409 
410 
411 
412 
413 
414  } //-- end of the if castDigi
415 
416  else { if(fVerbosity>0) std::cout<<"CastorPSMonitor::processEvent NO Castor Digis !!!"<<std::endl; }
417 
418 
419  if (showTiming) {
420  cpu_timer.stop(); std::cout << " TIMER::CastorPS -> " << cpu_timer.cpuTime() << std::endl;
422  }
423 
424  if(fVerbosity>0) std::cout << "CastorPSMonitor::processEvent (end)" << std::endl;
425 
426  return;
427  }
type
Definition: HCALResponse.h:21
std::vector< NewBunch > Bunches_
int i
Definition: DBlmapReader.cc:9
edm::CPUTimer cpu_timer
void start()
Definition: CPUTimer.cc:74
int presamples() const
number of samples before the sample from the triggered beam crossing (according to the hardware) ...
MonitorElement * SaturationSummaryMap
MonitorElement * DigiOccupancyMap
int adc() const
get the ADC sample
Definition: HcalQIESample.h:22
const HcalQIESample & sample(int i) const
access a sample
MonitorElement * meEvt_
std::vector< CastorDataFrame >::const_iterator const_iterator
const CastorCalibrations & getCastorCalibrations(const HcalGenericDetId &fId) const
double tsfC[20]
Definition: CastorBunch.h:13
void reset()
Definition: CPUTimer.cc:107
MonitorElement * reportSummary
void Fill(long long x)
HcalCastorDetId detid
Definition: CastorBunch.h:8
double sumDigiForEachChannel[14][16]
uint32_t rawId() const
get the raw id
Definition: DetId.h:43
struct CastorPSMonitor::@277 castorDigiHists
double saturatedThreshold_
int saturatedMap[14][16]
const CastorQIEShape * getCastorShape() const
float charge(const CastorQIEShape &fShape, unsigned fAdc, unsigned fCapId) const
ADC [0..127] + capid [0..3] -&gt; fC conversion.
double thirdRegionThreshold_
int j
Definition: DBlmapReader.cc:9
double tsCapId[20]
Definition: CastorBunch.h:10
MonitorElement * ChannelSummaryMap
bool usedflag
Definition: CastorBunch.h:9
Times stop()
Definition: CPUTimer.cc:94
double secondRegionThreshold_
int k[5][pyjets_maxn]
double pedestal(int fCapId) const
get pedestal for capid=0..3
const_iterator end() const
double cpuTime() const
Definition: CPUTimer.cc:158
int capid() const
get the Capacitor id
Definition: HcalQIESample.h:26
double firstRegionThreshold_
MonitorElement * reportSummaryMap
size_type size() const
double tsAdc[20]
Definition: CastorBunch.h:11
tuple cout
Definition: gather_cfg.py:121
MonitorElement * overallStatus
std::map< int, MonitorElement * > PSsector
TH2F * getTH2F(void) const
const HcalCastorDetId & id() const
int size() const
total number of samples in the digi
Definition: vlib.h:208
const_iterator begin() const
const CastorQIECoder * getCastorCoder(const HcalGenericDetId &fId) const
void CastorPSMonitor::reset ( void  )

Definition at line 66 of file CastorPSMonitor.cc.

Referenced by CastorMonitorModule::reset().

67  {
68 
69  }
void CastorPSMonitor::setup ( const edm::ParameterSet ps,
DQMStore dbe 
)
virtual

Reimplemented from CastorBaseMonitor.

Definition at line 75 of file CastorPSMonitor.cc.

References CastorBaseMonitor::baseFolder_, cuy::col, gather_cfg::cout, firstRegionThreshold_, firstTime_, fraction, CastorBaseMonitor::fVerbosity, edm::ParameterSet::getUntrackedParameter(), ievt_, numberSigma_, numOK, offline_, CastorBaseMonitor::rootFolder_, saturatedMap, saturatedThreshold_, secondRegionThreshold_, CastorBaseMonitor::setup(), sumDigiForEachChannel, and thirdRegionThreshold_.

Referenced by CastorMonitorModule::CastorMonitorModule().

75  {
76 
78  baseFolder_ = rootFolder_+"CastorPSMonitor";
79 
81  numberSigma_ = ps.getUntrackedParameter<double>("numberSigma", 1.5);
82  thirdRegionThreshold_ = ps.getUntrackedParameter<double>("thirdRegionThreshold", 300);
83  saturatedThreshold_ = ps.getUntrackedParameter<double>("saturatedThreshold", 0.05); //-- fraction of events in which chargeTS > 127 ADC
84  offline_ = ps.getUntrackedParameter<bool>("OfflineMode", false);
85 
86  if(fVerbosity>0) std::cout << "CastorPSMonitor::setup (start)" << std::endl;
87 
88  ievt_=0; firstTime_ = true;
91  numOK = 0;
92  fraction=0.;
93 
95  for (int row=0; row<14; row++){
96  for (int col=0; col<16; col++){
97  sumDigiForEachChannel[row][col] = 0;
98  saturatedMap [row][col] = 0;
99  }
100  }
101 
102 
103 
104  if(fVerbosity>0) std::cout << "CastorPSMonitor::setup (end)" << std::endl;
105 
106  return;
107 }
T getUntrackedParameter(std::string const &, T const &) const
virtual void setup(const edm::ParameterSet &ps, DQMStore *dbe)
double sumDigiForEachChannel[14][16]
std::string baseFolder_
double saturatedThreshold_
int saturatedMap[14][16]
double thirdRegionThreshold_
double secondRegionThreshold_
double firstRegionThreshold_
std::string rootFolder_
tuple cout
Definition: gather_cfg.py:121
int col
Definition: cuy.py:1008

Member Data Documentation

std::vector<NewBunch> CastorPSMonitor::Bunches_
private

Definition at line 61 of file CastorPSMonitor.h.

Referenced by processEvent().

struct { ... } CastorPSMonitor::castorDigiHists

Referenced by beginRun(), and processEvent().

MonitorElement* CastorPSMonitor::ChannelSummaryMap
private

Definition at line 42 of file CastorPSMonitor.h.

Referenced by beginRun(), and processEvent().

MonitorElement* CastorPSMonitor::DigiOccupancyMap
private

Definition at line 38 of file CastorPSMonitor.h.

Referenced by beginRun(), and processEvent().

bool CastorPSMonitor::doPerChannel_
private

Definition at line 26 of file CastorPSMonitor.h.

Referenced by CastorPSMonitor().

double CastorPSMonitor::firstRegionThreshold_
private

Definition at line 55 of file CastorPSMonitor.h.

Referenced by CastorPSMonitor(), processEvent(), and setup().

bool CastorPSMonitor::firstTime_
private

Definition at line 45 of file CastorPSMonitor.h.

Referenced by processEvent(), and setup().

double CastorPSMonitor::fraction
private

Definition at line 52 of file CastorPSMonitor.h.

Referenced by beginRun(), processEvent(), and setup().

TH2F* CastorPSMonitor::h_reportSummaryMap
private

Definition at line 53 of file CastorPSMonitor.h.

Referenced by beginRun().

int CastorPSMonitor::ievt_
private

Definition at line 28 of file CastorPSMonitor.h.

Referenced by CastorPSMonitor(), processEvent(), and setup().

MonitorElement* CastorPSMonitor::meDigi_pulseBX

Definition at line 32 of file CastorPSMonitor.h.

MonitorElement* CastorPSMonitor::meEvt_
private

Definition at line 35 of file CastorPSMonitor.h.

Referenced by beginRun(), and processEvent().

double CastorPSMonitor::numberSigma_
private

Definition at line 47 of file CastorPSMonitor.h.

Referenced by processEvent(), and setup().

int CastorPSMonitor::numOK
private

Definition at line 48 of file CastorPSMonitor.h.

Referenced by processEvent(), and setup().

bool CastorPSMonitor::offline_
private

Definition at line 46 of file CastorPSMonitor.h.

Referenced by beginRun(), and setup().

MonitorElement* CastorPSMonitor::overallStatus
private

Definition at line 41 of file CastorPSMonitor.h.

Referenced by beginRun(), and processEvent().

std::map<int,MonitorElement*> CastorPSMonitor::PSsector
private

Definition at line 36 of file CastorPSMonitor.h.

Referenced by beginRun(), and processEvent().

MonitorElement* CastorPSMonitor::reportSummary
private

Definition at line 39 of file CastorPSMonitor.h.

Referenced by beginRun(), and processEvent().

MonitorElement* CastorPSMonitor::reportSummaryMap
private

Definition at line 40 of file CastorPSMonitor.h.

Referenced by beginRun(), and processEvent().

int CastorPSMonitor::saturatedMap[14][16]
private

Definition at line 60 of file CastorPSMonitor.h.

Referenced by processEvent(), and setup().

double CastorPSMonitor::saturatedThreshold_
private

Definition at line 58 of file CastorPSMonitor.h.

Referenced by processEvent(), and setup().

MonitorElement* CastorPSMonitor::SaturationSummaryMap
private

Definition at line 43 of file CastorPSMonitor.h.

Referenced by beginRun(), and processEvent().

double CastorPSMonitor::secondRegionThreshold_
private

Definition at line 56 of file CastorPSMonitor.h.

Referenced by CastorPSMonitor(), processEvent(), and setup().

double CastorPSMonitor::status
private
double CastorPSMonitor::statusRS
private

Definition at line 50 of file CastorPSMonitor.h.

Referenced by CastorPSMonitor(), and processEvent().

double CastorPSMonitor::statusSaturated
private

Definition at line 51 of file CastorPSMonitor.h.

Referenced by CastorPSMonitor(), and processEvent().

double CastorPSMonitor::sumDigiForEachChannel[14][16]
private

Definition at line 59 of file CastorPSMonitor.h.

Referenced by processEvent(), and setup().

double CastorPSMonitor::thirdRegionThreshold_
private

Definition at line 57 of file CastorPSMonitor.h.

Referenced by processEvent(), and setup().