CMS 3D CMS Logo

List of all members | Public Member Functions | Protected Attributes
EcalUncalibRecHitWorkerWeights Class Reference

#include <EcalUncalibRecHitWorkerWeights.h>

Inheritance diagram for EcalUncalibRecHitWorkerWeights:
EcalUncalibRecHitWorkerRunOneDigiBase EcalUncalibRecHitWorkerBaseClass

Public Member Functions

 EcalUncalibRecHitWorkerWeights ()
 
 EcalUncalibRecHitWorkerWeights (const edm::ParameterSet &, edm::ConsumesCollector &c)
 
edm::ParameterSetDescription getAlgoDescription () override
 
bool run (const edm::Event &evt, const EcalDigiCollection::const_iterator &digi, EcalUncalibratedRecHitCollection &result) override
 
void set (const edm::EventSetup &es) override
 
 ~EcalUncalibRecHitWorkerWeights () override
 
- Public Member Functions inherited from EcalUncalibRecHitWorkerRunOneDigiBase
 EcalUncalibRecHitWorkerRunOneDigiBase ()
 
 EcalUncalibRecHitWorkerRunOneDigiBase (const edm::ParameterSet &p)
 
 EcalUncalibRecHitWorkerRunOneDigiBase (const edm::ParameterSet &p, edm::ConsumesCollector &c)
 
void run (const edm::Event &evt, const EcalDigiCollection &digis, EcalUncalibratedRecHitCollection &result) override
 
 ~EcalUncalibRecHitWorkerRunOneDigiBase () override
 
- Public Member Functions inherited from EcalUncalibRecHitWorkerBaseClass
 EcalUncalibRecHitWorkerBaseClass ()
 
 EcalUncalibRecHitWorkerBaseClass (const edm::ParameterSet &)
 
 EcalUncalibRecHitWorkerBaseClass (const edm::ParameterSet &, edm::ConsumesCollector &c)
 
virtual void set (const edm::Event &evt)
 
virtual ~EcalUncalibRecHitWorkerBaseClass ()
 

Protected Attributes

const EcalWeightSet::EcalChi2WeightMatrixchi2mat [2]
 
double gainRatios [3]
 
edm::ESHandle< EcalGainRatiosgains_
 
edm::ESHandle< EcalWeightXtalGroupsgrps_
 
double pedRMSVec [3]
 
edm::ESHandle< EcalPedestalspeds_
 
double pedVec [3]
 
EBShape testbeamEBShape
 
EEShape testbeamEEShape
 
edm::ESGetToken< EcalGainRatios, EcalGainRatiosRcdtokenGains_
 
edm::ESGetToken< EcalWeightXtalGroups, EcalWeightXtalGroupsRcdtokenGrps_
 
edm::ESGetToken< EcalPedestals, EcalPedestalsRcdtokenPeds_
 
edm::ESGetToken< EcalTBWeights, EcalTBWeightsRcdtokenWgts_
 
EcalUncalibRecHitRecWeightsAlgo< EBDataFrameuncalibMaker_barrel_
 
EcalUncalibRecHitRecWeightsAlgo< EEDataFrameuncalibMaker_endcap_
 
const EcalWeightSet::EcalWeightMatrixweights [2]
 
edm::ESHandle< EcalTBWeightswgts_
 

Detailed Description

Definition at line 34 of file EcalUncalibRecHitWorkerWeights.h.

Constructor & Destructor Documentation

◆ EcalUncalibRecHitWorkerWeights() [1/2]

EcalUncalibRecHitWorkerWeights::EcalUncalibRecHitWorkerWeights ( const edm::ParameterSet ps,
edm::ConsumesCollector c 
)

◆ EcalUncalibRecHitWorkerWeights() [2/2]

EcalUncalibRecHitWorkerWeights::EcalUncalibRecHitWorkerWeights ( )
inline

Definition at line 37 of file EcalUncalibRecHitWorkerWeights.h.

37 : testbeamEEShape(EEShape(true)), testbeamEBShape(EBShape(true)) { ; }

◆ ~EcalUncalibRecHitWorkerWeights()

EcalUncalibRecHitWorkerWeights::~EcalUncalibRecHitWorkerWeights ( )
inlineoverride

Definition at line 38 of file EcalUncalibRecHitWorkerWeights.h.

38 {};

Member Function Documentation

◆ getAlgoDescription()

edm::ParameterSetDescription EcalUncalibRecHitWorkerWeights::getAlgoDescription ( )
overridevirtual

Implements EcalUncalibRecHitWorkerBaseClass.

Definition at line 113 of file EcalUncalibRecHitWorkerWeights.cc.

113  {
115  return psd;
116 }

◆ run()

bool EcalUncalibRecHitWorkerWeights::run ( const edm::Event evt,
const EcalDigiCollection::const_iterator digi,
EcalUncalibratedRecHitCollection result 
)
overridevirtual

Implements EcalUncalibRecHitWorkerRunOneDigiBase.

Definition at line 31 of file EcalUncalibRecHitWorkerWeights.cc.

33  {
34  DetId detid(itdg->id());
35 
36  const EcalPedestals::Item* aped = nullptr;
37  const EcalMGPAGainRatio* aGain = nullptr;
38  const EcalXtalGroupId* gid = nullptr;
39  EcalTBWeights::EcalTDCId tdcid(1);
40 
41  if (detid.subdetId() == EcalEndcap) {
42  unsigned int hashedIndex = EEDetId(detid).hashedIndex();
43  aped = &peds_->endcap(hashedIndex);
44  aGain = &gains_->endcap(hashedIndex);
45  gid = &grps_->endcap(hashedIndex);
46  } else {
47  unsigned int hashedIndex = EBDetId(detid).hashedIndex();
48  aped = &peds_->barrel(hashedIndex);
49  aGain = &gains_->barrel(hashedIndex);
50  gid = &grps_->barrel(hashedIndex);
51  }
52 
53  pedVec[0] = aped->mean_x12;
54  pedVec[1] = aped->mean_x6;
55  pedVec[2] = aped->mean_x1;
56  pedRMSVec[0] = aped->rms_x12;
57  pedRMSVec[1] = aped->rms_x6;
58  pedRMSVec[2] = aped->rms_x1;
59  gainRatios[0] = 1.;
60  gainRatios[1] = aGain->gain12Over6();
61  gainRatios[2] = aGain->gain6Over1() * aGain->gain12Over6();
62 
63  // now lookup the correct weights in the map
64  EcalTBWeights::EcalTBWeightMap const& wgtsMap = wgts_->getMap();
65  EcalTBWeights::EcalTBWeightMap::const_iterator wit;
66  wit = wgtsMap.find(std::make_pair(*gid, tdcid));
67  if (wit == wgtsMap.end()) {
68  edm::LogError("EcalUncalibRecHitError")
69  << "No weights found for EcalGroupId: " << gid->id() << " and EcalTDCId: " << tdcid
70  << "\n skipping digi with id: " << detid.rawId();
71 
72  return false;
73  }
74  const EcalWeightSet& wset = wit->second; // this is the EcalWeightSet
75 
78  // const EcalWeightSet::EcalChi2WeightMatrix& mat3 = wset.getChi2WeightsBeforeGainSwitch();
79  // const EcalWeightSet::EcalChi2WeightMatrix& mat4 = wset.getChi2WeightsAfterGainSwitch();
80 
81  weights[0] = &mat1;
82  weights[1] = &mat2;
83 
84  // chi2mat[0] = &mat3;
85  // chi2mat[1] = &mat4;
86  /*
87  if (detid.subdetId()==EcalEndcap) {
88  result.push_back(uncalibMaker_endcap_.makeRecHit(*itdg, pedVec, gainRatios, weights, chi2mat));
89  } else {
90  result.push_back(uncalibMaker_barrel_.makeRecHit(*itdg, pedVec, gainRatios, weights, chi2mat));
91  }
92 */
93  if (detid.subdetId() == EcalEndcap) {
96  if (((EcalDataFrame)(*itdg)).hasSwitchToGain6())
98  if (((EcalDataFrame)(*itdg)).hasSwitchToGain1())
100  result.emplace_back(rhit);
101  } else {
104  if (((EcalDataFrame)(*itdg)).hasSwitchToGain6())
106  if (((EcalDataFrame)(*itdg)).hasSwitchToGain1())
108  result.emplace_back(rhit);
109  }
110  return true;
111 }

References EcalEndcap, EcalMGPAGainRatio::gain12Over6(), EcalMGPAGainRatio::gain6Over1(), gainRatios, gains_, EcalTBWeights::getMap(), EcalWeightSet::getWeightsAfterGainSwitch(), EcalWeightSet::getWeightsBeforeGainSwitch(), grps_, ecalpyutils::hashedIndex(), EBDetId::hashedIndex(), EEDetId::hashedIndex(), EcalXtalGroupId::id(), EcalUncalibratedRecHit::kHasSwitchToGain1, EcalUncalibratedRecHit::kHasSwitchToGain6, EcalUncalibRecHitRecWeightsAlgo< C >::makeRecHit(), pedRMSVec, peds_, pedVec, mps_fire::result, EcalUncalibratedRecHit::setFlagBit(), testbeamEBShape, testbeamEEShape, uncalibMaker_endcap_, weights, and wgts_.

◆ set()

void EcalUncalibRecHitWorkerWeights::set ( const edm::EventSetup es)
overridevirtual

Member Data Documentation

◆ chi2mat

const EcalWeightSet::EcalChi2WeightMatrix* EcalUncalibRecHitWorkerWeights::chi2mat[2]
protected

Definition at line 62 of file EcalUncalibRecHitWorkerWeights.h.

◆ gainRatios

double EcalUncalibRecHitWorkerWeights::gainRatios[3]
protected

Definition at line 59 of file EcalUncalibRecHitWorkerWeights.h.

Referenced by run().

◆ gains_

edm::ESHandle<EcalGainRatios> EcalUncalibRecHitWorkerWeights::gains_
protected

Definition at line 53 of file EcalUncalibRecHitWorkerWeights.h.

Referenced by run(), and set().

◆ grps_

edm::ESHandle<EcalWeightXtalGroups> EcalUncalibRecHitWorkerWeights::grps_
protected

Definition at line 54 of file EcalUncalibRecHitWorkerWeights.h.

Referenced by run(), and set().

◆ pedRMSVec

double EcalUncalibRecHitWorkerWeights::pedRMSVec[3]
protected

Definition at line 58 of file EcalUncalibRecHitWorkerWeights.h.

Referenced by run().

◆ peds_

edm::ESHandle<EcalPedestals> EcalUncalibRecHitWorkerWeights::peds_
protected

Definition at line 52 of file EcalUncalibRecHitWorkerWeights.h.

Referenced by run(), and set().

◆ pedVec

double EcalUncalibRecHitWorkerWeights::pedVec[3]
protected

Definition at line 57 of file EcalUncalibRecHitWorkerWeights.h.

Referenced by run().

◆ testbeamEBShape

EBShape EcalUncalibRecHitWorkerWeights::testbeamEBShape
protected

Definition at line 68 of file EcalUncalibRecHitWorkerWeights.h.

Referenced by run(), and set().

◆ testbeamEEShape

EEShape EcalUncalibRecHitWorkerWeights::testbeamEEShape
protected

Definition at line 67 of file EcalUncalibRecHitWorkerWeights.h.

Referenced by run(), and set().

◆ tokenGains_

edm::ESGetToken<EcalGainRatios, EcalGainRatiosRcd> EcalUncalibRecHitWorkerWeights::tokenGains_
protected

Definition at line 49 of file EcalUncalibRecHitWorkerWeights.h.

Referenced by set().

◆ tokenGrps_

edm::ESGetToken<EcalWeightXtalGroups, EcalWeightXtalGroupsRcd> EcalUncalibRecHitWorkerWeights::tokenGrps_
protected

Definition at line 50 of file EcalUncalibRecHitWorkerWeights.h.

Referenced by set().

◆ tokenPeds_

edm::ESGetToken<EcalPedestals, EcalPedestalsRcd> EcalUncalibRecHitWorkerWeights::tokenPeds_
protected

Definition at line 48 of file EcalUncalibRecHitWorkerWeights.h.

Referenced by set().

◆ tokenWgts_

edm::ESGetToken<EcalTBWeights, EcalTBWeightsRcd> EcalUncalibRecHitWorkerWeights::tokenWgts_
protected

Definition at line 51 of file EcalUncalibRecHitWorkerWeights.h.

Referenced by set().

◆ uncalibMaker_barrel_

EcalUncalibRecHitRecWeightsAlgo<EBDataFrame> EcalUncalibRecHitWorkerWeights::uncalibMaker_barrel_
protected

Definition at line 64 of file EcalUncalibRecHitWorkerWeights.h.

◆ uncalibMaker_endcap_

EcalUncalibRecHitRecWeightsAlgo<EEDataFrame> EcalUncalibRecHitWorkerWeights::uncalibMaker_endcap_
protected

Definition at line 65 of file EcalUncalibRecHitWorkerWeights.h.

Referenced by run().

◆ weights

const EcalWeightSet::EcalWeightMatrix* EcalUncalibRecHitWorkerWeights::weights[2]
protected

Definition at line 61 of file EcalUncalibRecHitWorkerWeights.h.

Referenced by run().

◆ wgts_

edm::ESHandle<EcalTBWeights> EcalUncalibRecHitWorkerWeights::wgts_
protected

Definition at line 55 of file EcalUncalibRecHitWorkerWeights.h.

Referenced by run(), and set().

EcalUncalibratedRecHit::kHasSwitchToGain6
Definition: EcalUncalibratedRecHit.h:18
EcalUncalibRecHitWorkerWeights::uncalibMaker_endcap_
EcalUncalibRecHitRecWeightsAlgo< EEDataFrame > uncalibMaker_endcap_
Definition: EcalUncalibRecHitWorkerWeights.h:65
EcalUncalibRecHitWorkerWeights::testbeamEEShape
EEShape testbeamEEShape
Definition: EcalUncalibRecHitWorkerWeights.h:67
EBDetId::hashedIndex
int hashedIndex() const
get a compact index for arrays
Definition: EBDetId.h:82
EcalTBWeights::getMap
const EcalTBWeightMap & getMap() const
Definition: EcalTBWeights.h:28
EcalShapeBase::setEventSetup
void setEventSetup(const edm::EventSetup &evtSetup)
Definition: EcalShapeBase.cc:19
EcalUncalibRecHitWorkerWeights::peds_
edm::ESHandle< EcalPedestals > peds_
Definition: EcalUncalibRecHitWorkerWeights.h:52
EcalUncalibRecHitWorkerWeights::tokenPeds_
edm::ESGetToken< EcalPedestals, EcalPedestalsRcd > tokenPeds_
Definition: EcalUncalibRecHitWorkerWeights.h:48
EBShape
Definition: EBShape.h:6
EcalUncalibRecHitWorkerWeights::pedVec
double pedVec[3]
Definition: EcalUncalibRecHitWorkerWeights.h:57
EBDetId
Definition: EBDetId.h:17
EcalUncalibRecHitWorkerWeights::gains_
edm::ESHandle< EcalGainRatios > gains_
Definition: EcalUncalibRecHitWorkerWeights.h:53
edm::ParameterSetDescription
Definition: ParameterSetDescription.h:52
EcalDataFrame
Definition: EcalDataFrame.h:16
EcalCondObjectContainer
Definition: EcalCondObjectContainer.h:13
EcalXtalGroupId
Definition: EcalXtalGroupId.h:11
EcalTBWeightsRcd
Definition: EcalTBWeightsRcd.h:5
EcalUncalibRecHitWorkerWeights::tokenGains_
edm::ESGetToken< EcalGainRatios, EcalGainRatiosRcd > tokenGains_
Definition: EcalUncalibRecHitWorkerWeights.h:49
EcalUncalibratedRecHit::setFlagBit
void setFlagBit(Flags flag)
Definition: EcalUncalibratedRecHit.cc:99
EcalWeightSet::EcalWeightMatrix
math::Matrix< 3, 10 >::type EcalWeightMatrix
Definition: EcalWeightSet.h:19
DetId
Definition: DetId.h:17
EcalUncalibRecHitWorkerWeights::tokenGrps_
edm::ESGetToken< EcalWeightXtalGroups, EcalWeightXtalGroupsRcd > tokenGrps_
Definition: EcalUncalibRecHitWorkerWeights.h:50
EcalUncalibRecHitWorkerWeights::wgts_
edm::ESHandle< EcalTBWeights > wgts_
Definition: EcalUncalibRecHitWorkerWeights.h:55
EcalWeightSet::getWeightsAfterGainSwitch
EcalWeightMatrix & getWeightsAfterGainSwitch()
Definition: EcalWeightSet.h:27
EEShape
Definition: EEShape.h:6
EcalMGPAGainRatio::gain12Over6
float gain12Over6() const
Definition: EcalMGPAGainRatio.h:19
EcalUncalibRecHitWorkerWeights::gainRatios
double gainRatios[3]
Definition: EcalUncalibRecHitWorkerWeights.h:59
EEDetId
Definition: EEDetId.h:14
EcalUncalibRecHitWorkerWeights::testbeamEBShape
EBShape testbeamEBShape
Definition: EcalUncalibRecHitWorkerWeights.h:68
EcalGainRatiosRcd
Definition: EcalGainRatiosRcd.h:5
EcalEndcap
Definition: EcalSubdetector.h:10
EcalWeightSet::getWeightsBeforeGainSwitch
EcalWeightMatrix & getWeightsBeforeGainSwitch()
Definition: EcalWeightSet.h:26
EcalUncalibRecHitWorkerWeights::weights
const EcalWeightSet::EcalWeightMatrix * weights[2]
Definition: EcalUncalibRecHitWorkerWeights.h:61
EcalTBWeights::EcalTDCId
int EcalTDCId
Definition: EcalTBWeights.h:17
EcalCondObjectContainer::Item
T Item
Definition: EcalCondObjectContainer.h:15
EEDetId::hashedIndex
int hashedIndex() const
Definition: EEDetId.h:183
edm::EventSetup::getHandle
ESHandle< T > getHandle(const ESGetToken< T, R > &iToken) const
Definition: EventSetup.h:155
EcalUncalibRecHitWorkerRunOneDigiBase::EcalUncalibRecHitWorkerRunOneDigiBase
EcalUncalibRecHitWorkerRunOneDigiBase()
Definition: EcalUncalibRecHitWorkerRunOneDigiBase.h:15
edm::LogError
Log< level::Error, false > LogError
Definition: MessageLogger.h:123
EcalUncalibRecHitWorkerWeights::tokenWgts_
edm::ESGetToken< EcalTBWeights, EcalTBWeightsRcd > tokenWgts_
Definition: EcalUncalibRecHitWorkerWeights.h:51
EcalTBWeights::EcalTBWeightMap
std::map< std::pair< EcalXtalGroupId, EcalTDCId >, EcalWeightSet > EcalTBWeightMap
Definition: EcalTBWeights.h:18
EcalWeightSet
Definition: EcalWeightSet.h:17
EcalUncalibratedRecHit
Definition: EcalUncalibratedRecHit.h:8
EcalMGPAGainRatio::gain6Over1
float gain6Over1() const
Definition: EcalMGPAGainRatio.h:20
EcalUncalibRecHitRecWeightsAlgo::makeRecHit
virtual EcalUncalibratedRecHit makeRecHit(const C &dataFrame, const double *pedestals, const double *pedestalsRMS, const double *gainRatios, const EcalWeightSet::EcalWeightMatrix **weights, const EcalShapeBase &testbeamPulseShape)
Compute parameters.
Definition: EcalUncalibRecHitRecWeightsAlgo.h:30
EcalUncalibRecHitWorkerWeights::grps_
edm::ESHandle< EcalWeightXtalGroups > grps_
Definition: EcalUncalibRecHitWorkerWeights.h:54
EcalXtalGroupId::id
unsigned int id() const
Definition: EcalXtalGroupId.h:22
mps_fire.result
result
Definition: mps_fire.py:311
EcalWeightXtalGroupsRcd
Definition: EcalWeightXtalGroupsRcd.h:5
EcalPedestalsRcd
Definition: EcalPedestalsRcd.h:5
c
auto & c
Definition: CAHitNtupletGeneratorKernelsImpl.h:56
EcalUncalibratedRecHit::kHasSwitchToGain1
Definition: EcalUncalibratedRecHit.h:19
ecalpyutils::hashedIndex
int hashedIndex(int ieta, int iphi)
Definition: EcalPyUtils.cc:38
EcalTBWeights
Definition: EcalTBWeights.h:15
EcalMGPAGainRatio
Definition: EcalMGPAGainRatio.h:13
EcalUncalibRecHitWorkerWeights::pedRMSVec
double pedRMSVec[3]
Definition: EcalUncalibRecHitWorkerWeights.h:58