21 EBdigiCollectionToken_( consumes<
EBDigiCollection>( ps.getParameter<
edm::InputTag>(
"EBdigiCollection" ) ) ),
22 EEdigiCollectionToken_( consumes<
EEDigiCollection>( ps.getParameter<
edm::InputTag>(
"EEdigiCollection" ) ) ),
23 ESdigiCollectionToken_( consumes<
ESDigiCollection>( ps.getParameter<
edm::InputTag>(
"ESdigiCollection" ) ) ),
54 doPhotostatistics =
false;
57 photoelectronsToAnalogBarrel, photoelectronsToAnalogEndcap,
58 samplingFactor, timePhase, readoutFrameSize, binOfMaximum,
59 doPhotostatistics, syncPhase);
148 sprintf (histo,
"EcalDigiTask Barrel maximum Digi over sim signal ratio gt 100 ADC" ) ;
151 sprintf (histo,
"EcalDigiTask Endcap maximum Digi over sim signal ratio gt 100 ADC" ) ;
154 sprintf (histo,
"EcalDigiTask Barrel maximum Digi over sim signal ratio signal gt 50pc gun" ) ;
157 sprintf (histo,
"EcalDigiTask Endcap maximum Digi over sim signal ratio signal gt 40pc gun" ) ;
160 sprintf (histo,
"EcalDigiTask Barrel bunch crossing" ) ;
163 sprintf (histo,
"EcalDigiTask Endcap bunch crossing" ) ;
166 sprintf (histo,
"EcalDigiTask Preshower bunch crossing" ) ;
171 sprintf (histo,
"EcalDigiTask Barrel shape bunch crossing %02d",
i-10 );
174 sprintf (histo,
"EcalDigiTask Endcap shape bunch crossing %02d",
i-10 );
177 sprintf (histo,
"EcalDigiTask Preshower shape bunch crossing %02d",
i-10 );
182 sprintf (histo,
"EcalDigiTask Barrel shape digi");
185 sprintf (histo,
"EcalDigiTask Endcap shape digi");
188 sprintf (histo,
"EcalDigiTask Preshower shape digi");
191 sprintf (histo,
"EcalDigiTask Barrel shape digi ratio");
194 sprintf (histo,
"EcalDigiTask Endcap shape digi ratio");
197 sprintf (histo,
"EcalDigiTask Preshower shape digi ratio");
206 std::vector<MonitorElement *> theBunches;
231 std::vector<double> bunchSum;
232 bunchSum.reserve(nSample);
233 std::vector<double> bunchSumErro;
234 bunchSumErro.reserve(nSample);
235 std::vector<double>
total;
236 total.reserve(nSample);
237 std::vector<double> totalErro;
238 totalErro.reserve(nSample);
239 std::vector<double>
ratio;
240 ratio.reserve(nSample);
241 std::vector<double> ratioErro;
242 ratioErro.reserve(nSample);
245 for (
int iEl = 0 ; iEl < nSample ; iEl++ ) {
247 bunchSumErro[iEl] = 0.;
254 for (
int iSample = 0 ; iSample < nSample ; iSample++ ) {
257 totalErro[iSample] += theTotal->
getBinError(iSample+1);
263 bunchSum[iSample] += theBunches[iHisto]->getBinContent(iSample+1);
264 bunchSumErro[iSample] +=
pow(theBunches[iHisto]->getBinError(iSample+1),2);
267 bunchSumErro[iSample] =
sqrt(bunchSumErro[iSample]);
269 if ( bunchSum[iSample] > 0. ) {
270 ratio[iSample] = total[iSample]/bunchSum[iSample];
271 ratioErro[iSample] =
sqrt(
pow(totalErro[iSample]/bunchSum[iSample],2)+
272 pow((total[iSample]*bunchSumErro[iSample])/(bunchSum[iSample]*bunchSum[iSample]),2));
275 std::cout <<
" Sample = " << iSample <<
" Total = " << total[iSample] <<
" +- " << totalErro[iSample] <<
"\n" 276 <<
" Sum = " << bunchSum[iSample] <<
" +- " << bunchSumErro[iSample] <<
"\n" 277 <<
" Ratio = " << ratio[iSample] <<
" +- " << ratioErro[iSample] << std::endl;
280 theRatio->
setBinError(iSample+1, (
float)ratioErro[iSample]);
292 std::vector<SimTrack> theSimTracks;
293 std::vector<SimVertex> theSimVertexes;
304 if (!MCEvt.
isValid()) { skipMC =
true; }
313 EBdigis = EcalDigiEB.
product();
314 LogDebug(
"DigiInfo") <<
"total # EBdigis: " << EBdigis->
size() ;
315 if ( EBdigis->
empty() ) isBarrel =
false;
323 EEdigis = EcalDigiEE.
product();
324 LogDebug(
"DigiInfo") <<
"total # EEdigis: " << EEdigis->
size() ;
325 if ( EEdigis->
empty() ) isEndcap =
false;
330 bool isPreshower =
true;
333 ESdigis = EcalDigiES.
product();
334 LogDebug(
"DigiInfo") <<
"total # ESdigis: " << ESdigis->
size() ;
335 if ( ESdigis->
empty() ) isPreshower =
false;
340 double theGunEnergy = 0.;
342 for ( HepMC::GenEvent::particle_const_iterator
p = MCEvt->
GetEvent()->particles_begin();
343 p != MCEvt->
GetEvent()->particles_end(); ++
p ) {
345 theGunEnergy = (*p)->momentum().e();
350 edm::LogWarning(
"DigiInfo") <<
"No HepMC available, using 30 GeV as giun energy";
365 double ebSimThreshold = 0.5*theGunEnergy;
372 <<
" CaloHit " << iHit.getName() <<
"\n" 373 <<
" DetID = "<<iHit.id()<<
" EBDetId = " << ebid.
ieta() <<
" " << ebid.
iphi() <<
"\n" 374 <<
" Time = " << iHit.time() <<
" Event id. = " << iHit.eventId().rawId() <<
"\n" 375 <<
" Track Id = " << iHit.geantTrackId() <<
"\n" 376 <<
" Energy = " << iHit.energy();
378 uint32_t crystid = ebid.
rawId();
380 if ( iHit.eventId().rawId() == 0 ) ebSignalSimMap[crystid] += iHit.energy();
390 std::vector<double> ebAnalogSignal ;
391 std::vector<double> ebADCCounts ;
392 std::vector<double> ebADCGains ;
397 for (
unsigned int digis=0; digis<EcalDigiEB->
size(); ++digis) {
400 int nrSamples=ebdf.
size();
408 ebAnalogSignal[
sample] = 0.;
420 if (Emax < ebAnalogSignal[
sample] ) {
421 Emax = ebAnalogSignal[
sample] ;
424 LogDebug(
"DigiInfo") <<
"EB sample " << sample <<
" ADC counts = " << ebADCCounts[
sample] <<
" Gain Id = " << ebADCGains[
sample] <<
" Analog eq = " << ebAnalogSignal[
sample];
426 double pedestalPreSampleAnalog = 0.;
427 findPedestal( ebid, (
int)ebADCGains[Pmax] , pedestalPreSampleAnalog);
429 double Erec = Emax - pedestalPreSampleAnalog;
431 if ( ebSignalSimMap[ebid.
rawId()] != 0. ) {
432 LogDebug(
"DigiInfo") <<
" Digi / Signal Hit = " << Erec <<
" / " << ebSignalSimMap[ebid.
rawId()] <<
" gainConv " <<
gainConv_[(
int)ebADCGains[Pmax]];
436 for (
int i = 0;
i < 10 ;
i++ ) {
437 pedestalPreSampleAnalog = 0.;
438 findPedestal( ebid, (
int)ebADCGains[
i] , pedestalPreSampleAnalog);
462 double eeSimThreshold = 0.4*theGunEnergy;
469 <<
" CaloHit " << iHit.getName() <<
"\n" 470 <<
" DetID = "<<iHit.id()<<
" EEDetId side = " << eeid.
zside() <<
" = " << eeid.
ix() <<
" " << eeid.
iy() <<
"\n" 471 <<
" Time = " << iHit.time() <<
" Event id. = " << iHit.eventId().rawId() <<
"\n" 472 <<
" Track Id = " << iHit.geantTrackId() <<
"\n" 473 <<
" Energy = " << iHit.energy();
475 uint32_t crystid = eeid.
rawId();
477 if ( iHit.eventId().rawId() == 0 ) eeSignalSimMap[crystid] += iHit.energy();
487 std::vector<double> eeAnalogSignal ;
488 std::vector<double> eeADCCounts ;
489 std::vector<double> eeADCGains ;
494 for (
unsigned int digis=0; digis<EcalDigiEE->
size(); ++digis) {
497 int nrSamples=eedf.
size();
505 eeAnalogSignal[
sample] = 0.;
517 if (Emax < eeAnalogSignal[
sample] ) {
518 Emax = eeAnalogSignal[
sample] ;
521 LogDebug(
"DigiInfo") <<
"EE sample " << sample <<
" ADC counts = " << eeADCCounts[
sample] <<
" Gain Id = " << eeADCGains[
sample] <<
" Analog eq = " << eeAnalogSignal[
sample];
523 double pedestalPreSampleAnalog = 0.;
524 findPedestal( eeid, (
int)eeADCGains[Pmax] , pedestalPreSampleAnalog);
526 double Erec = Emax - pedestalPreSampleAnalog;
528 if ( eeSignalSimMap[eeid.
rawId()] != 0. ) {
529 LogDebug(
"DigiInfo") <<
" Digi / Signal Hit = " << Erec <<
" / " << eeSignalSimMap[eeid.
rawId()] <<
" gainConv " <<
gainConv_[(
int)eeADCGains[Pmax]];
533 for (
int i = 0;
i < 10 ;
i++ ) {
534 pedestalPreSampleAnalog = 0.;
535 findPedestal( eeid, (
int)eeADCGains[
i] , pedestalPreSampleAnalog);
559 <<
" CaloHit " << iHit.getName() <<
"\n" 560 <<
" DetID = "<<iHit.id()<<
"ESDetId: z side " << esid.
zside() <<
" plane " << esid.
plane() << esid.
six() <<
',' << esid.
siy() <<
':' << esid.
strip() <<
"\n" 561 <<
" Time = " << iHit.time() <<
" Event id. = " << iHit.eventId().rawId() <<
"\n" 562 <<
" Track Id = " << iHit.geantTrackId() <<
"\n" 563 <<
" Energy = " << iHit.energy();
565 uint32_t stripid = esid.
rawId();
567 if ( iHit.eventId().rawId() == 0 ) esSignalSimMap[stripid] += iHit.energy();
575 std::vector<double> esADCCounts ;
576 std::vector<double> esADCAnalogSignal ;
580 for (
unsigned int digis=0; digis<EcalDigiES->
size(); ++digis) {
583 int nrSamples=esdf.
size();
589 esADCAnalogSignal[
sample] = 0.;
602 LogDebug(
"DigiInfo") <<
"Preshower Digi for ESDetId: z side " << esid.
zside() <<
" plane " << esid.
plane() << esid.
six() <<
',' << esid.
siy() <<
':' << esid.
strip();
603 for (
int i = 0;
i < 3 ;
i++ ) {
604 LogDebug(
"DigiInfo") <<
"sample " <<
i <<
" ADC = " << esADCCounts[
i] <<
" Analog eq = " << esADCAnalogSignal[
i];
608 for (
int i = 0;
i < 3 ;
i++ ) {
638 LogDebug(
"EcalDigi") <<
" Gains conversions: " <<
"\n" <<
" g1 = " << gainConv_[1] <<
"\n" <<
" g2 = " << gainConv_[2] <<
"\n" <<
" g3 = " << gainConv_[3];
640 delete defaultRatios;
672 ( 2 ==
m_ESgain ? 0.8815 : 1.0 ) ) ) ;
713 LogDebug(
"EcalMMValid") <<
"Pedestals for " << detId.
rawId() <<
" gain range " << gainId <<
" : \n" <<
"Mean = " << ped;
748 std::vector<DetId> theOverThresholdId;
749 for (
unsigned int i = 0 ;
i < theSDId.size() ;
i++ ) {
751 int sdId = theSDId[
i].rawId();
752 if ( SignalSimMap[sdId] > theSimThreshold ) theOverThresholdId.push_back( theSDId[
i] );
780 for ( std::vector<DetId>::const_iterator idItr = theOverThresholdId.begin() ; idItr != theOverThresholdId.end() ; ++idItr ) {
794 if ( analogSignal ) {
798 for (
int i = 0 ;
i <
limit ;
i++ ) {
T getParameter(std::string const &) const
void setGeometry(const CaloGeometry *geometry)
geometry needed for time-of-flight
T getUntrackedParameter(std::string const &, T const &) const
void checkPedestals(const edm::EventSetup &c)
void setBinContent(int binx, double content)
set content of bin (1-D)
MonitorElement * meEBDigiMixRatioOriggt50pc_
MonitorElement * meESbunchCrossing_
const ESIntercalibConstants * m_ESmips
void endRun(const edm::Run &r, const edm::EventSetup &c) override
edm::EDGetTokenT< CrossingFrame< PCaloHit > > crossingFramePCaloHitESToken_
void findPedestal(const DetId &detId, int gainId, double &ped) const
static const int MAXSAMPLES
int gainId(sample_type sample)
get the gainId (2 bits)
MonitorElement * bookProfile(Args &&...args)
bool getByToken(EDGetToken token, Handle< PROD > &result) const
void setGain(const int gain)
const self & getMap() const
edm::EDGetTokenT< edm::HepMCProduct > HepMCToken_
const ESDetId & id() const
MonitorElement * meEEShapeRatio_
const self & getMap() const
float getESValueLow() const
simHitToPhotoelectronsEndcap
constexpr uint32_t rawId() const
get the raw id
void checkCalibrations(edm::EventSetup const &c)
MonitorElement * meEEBunchShape_[nBunch]
edm::EDGetTokenT< EBDigiCollection > EBdigiCollectionToken_
std::vector< CLHEP::HepRandomEngine * > randomEngines_
MonitorElement * meEBBunchShape_[nBunch]
const EBShape * theEBShape
simHitToPhotoelectronsBarrel
int gainId() const
get the gainId (2 bits)
virtual CLHEP::HepRandomEngine & getEngine(StreamID const &)=0
Use this engine in event methods.
MonitorElement * meESShape_
virtual void run(const MixCollection< PCaloHit > &hits, CLHEP::HepRandomEngine *)
Complete cell digitization.
CaloHitResponse * theESResponse
MonitorElement * meESShapeRatio_
int iphi() const
get the crystal iphi
edm::EDGetTokenT< CrossingFrame< PCaloHit > > crossingFramePCaloHitEEToken_
MonitorElement * meEBbunchCrossing_
CaloHitResponse * theEBResponse
EcalPedestalsMap::const_iterator EcalPedestalsMapIterator
void bunchSumTest(std::vector< MonitorElement * > &theBunches, MonitorElement *&theTotal, MonitorElement *&theRatio, int nSample)
MonitorElement * meESBunchShape_[nBunch]
Creates electronics signals from hits.
~EcalMixingModuleValidation() override
Destructor.
static const int MAXSAMPLES
CLHEP::HepRandomEngine * randomEngine(edm::StreamID const &streamID)
MonitorElement * meEBShape_
const_iterator find(uint32_t rawId) const
MonitorElement * book1D(Args &&...args)
const CaloSimParameters & simParameters(const DetId &id) const override
return the sim parameters relative to the right subdet
void setBinError(int binx, double error)
set uncertainty on content of bin (1-D)
int ieta() const
get the crystal ieta
edm::EDGetTokenT< CrossingFrame< PCaloHit > > crossingFramePCaloHitEBToken_
bool isEndcap(GeomDetEnumerators::SubDetector m)
void computeSDBunchDigi(const edm::EventSetup &eventSetup, const MixCollection< PCaloHit > &theHits, MapType &ebSignalSimMap, const EcalSubdetector &thisDet, const double &theSimThreshold, CLHEP::HepRandomEngine *)
std::map< int, double, std::less< int > > gainConv_
void dqmBeginRun(edm::Run const &, edm::EventSetup const &) override
void reserve(size_t isize)
const EcalSimParameterMap * theParameterMap
const EcalPedestals * thePedestals
std::map< uint32_t, float, std::less< uint32_t > > MapType
edm::EDGetTokenT< ESDigiCollection > ESdigiCollectionToken_
MonitorElement * meEBShapeRatio_
unsigned int value() const
const CaloGeometry * theGeometry
MonitorElement * meEEbunchCrossing_
void setCurrentFolder(const std::string &fullpath)
const HepMC::GenEvent * GetEvent() const
T const * product() const
double getBinError(int binx) const
get uncertainty on content of bin (1-D) - See TH1::GetBinError for details
void analyze(edm::Event const &e, edm::EventSetup const &c) override
Analyze.
float gain12Over6() const
CaloHitResponse * theEEResponse
void setBunchRange(int minBunch, int maxBunch)
tells it which pileup bunches to do
std::vector< DetId > getValidDetIds() const
Get the list of all valid detector ids.
CaloSamples * findSignal(const DetId &detId)
users can look for the signal for a given cell
const EEShape * theEEShape
double getBinContent(int binx) const
get content of bin (1-D)
void clear()
frees up memory
photoelectronsToAnalogBarrel
const ESPedestals * m_ESpeds
StreamID streamID() const
MonitorElement * meEEShape_
const_iterator find(uint32_t rawId) const
const_iterator end() const
int adc() const
get the ADC sample (singed 16 bits)
DetId id() const
get the (generic) id
EcalMixingModuleValidation(const edm::ParameterSet &ps)
Constructor.
float getESValueHigh() const
T const * product() const
photoelectronsToAnalogEndcap
static const int MAXSAMPLES
Power< A, B >::type pow(const A &a, const B &b)
edm::EDGetTokenT< EEDigiCollection > EEdigiCollectionToken_
void bookHistograms(DQMStore::IBooker &i, edm::Run const &, edm::EventSetup const &) override
int adc() const
get the ADC sample (12 bits)
MonitorElement * meEBDigiMixRatiogt100ADC_
MonitorElement * meEEDigiMixRatiogt100ADC_
MonitorElement * meEEDigiMixRatioOriggt40pc_