CMS 3D CMS Logo

EcalRecHitWorkerSimple.cc
Go to the documentation of this file.
14 
18  v_chstatus_ = StringToEnumValue<EcalChannelStatusCode::Code>(
19  ps.getParameter<std::vector<std::string> >("ChannelStatusToBeExcluded"));
20  killDeadChannels_ = ps.getParameter<bool>("killDeadChannels");
21  laserCorrection_ = ps.getParameter<bool>("laserCorrection");
22  EBLaserMIN_ = ps.getParameter<double>("EBLaserMIN");
23  EELaserMIN_ = ps.getParameter<double>("EELaserMIN");
24  EBLaserMAX_ = ps.getParameter<double>("EBLaserMAX");
25  EELaserMAX_ = ps.getParameter<double>("EELaserMAX");
26 
27  skipTimeCalib_ = ps.getParameter<bool>("skipTimeCalib");
28 
29  // Traslate string representation of flagsMapDBReco into enum values
30  const edm::ParameterSet& p = ps.getParameter<edm::ParameterSet>("flagsMapDBReco");
31  std::vector<std::string> recoflagbitsStrings = p.getParameterNames();
32  v_DB_reco_flags_.resize(32);
33 
34  for (unsigned int i = 0; i != recoflagbitsStrings.size(); ++i) {
35  EcalRecHit::Flags recoflagbit = (EcalRecHit::Flags)StringToEnumValue<EcalRecHit::Flags>(recoflagbitsStrings[i]);
36  std::vector<std::string> dbstatus_s = p.getParameter<std::vector<std::string> >(recoflagbitsStrings[i]);
37  std::vector<uint32_t> dbstatuses;
38  for (unsigned int j = 0; j != dbstatus_s.size(); ++j) {
40  (EcalChannelStatusCode::Code)StringToEnumValue<EcalChannelStatusCode::Code>(dbstatus_s[j]);
41  dbstatuses.push_back(dbstatus);
42  }
43 
44  v_DB_reco_flags_[recoflagbit] = dbstatuses;
45  }
46 
47  flagmask_ = 0;
50  flagmask_ |= 0x1 << EcalRecHit::kDead;
54 }
55 
58 
59  if (!skipTimeCalib_) {
62  }
63 
66  if (laserCorrection_)
68 }
69 
71  const EcalUncalibratedRecHit& uncalibRH,
73  DetId detid = uncalibRH.id();
74 
76  EcalChannelStatusCode::Code dbstatus = chit->getStatusCode();
77 
78  // check for channels to be excluded from reconstruction
79  if (!v_chstatus_.empty()) {
80  std::vector<int>::const_iterator res = std::find(v_chstatus_.begin(), v_chstatus_.end(), dbstatus);
81  if (res != v_chstatus_.end())
82  return false;
83  }
84 
85  uint32_t flagBits = setFlagBits(v_DB_reco_flags_, dbstatus);
86 
87  float offsetTime = 0; // the global time phase
88  const EcalIntercalibConstantMap& icalMap = ical->getMap();
89  if (detid.subdetId() == EcalEndcap) {
91  if (!skipTimeCalib_)
92  offsetTime = offtime->getEEValue();
93  } else {
95  if (!skipTimeCalib_)
96  offsetTime = offtime->getEBValue();
97  }
98 
99  // first intercalibration constants
100  EcalIntercalibConstantMap::const_iterator icalit = icalMap.find(detid);
101  EcalIntercalibConstant icalconst = 1;
102  if (icalit != icalMap.end()) {
103  icalconst = (*icalit);
104  } else {
105  edm::LogError("EcalRecHitError") << "No intercalib const found for xtal " << detid.rawId()
106  << "! something wrong with EcalIntercalibConstants in your DB? ";
107  }
108 
109  // get laser coefficient
110  float lasercalib = 1.;
111  if (laserCorrection_)
112  lasercalib = laser->getLaserCorrection(detid, evt.time());
113 
114  // get time calibration coefficient
115  EcalTimeCalibConstant itimeconst = 0;
116 
117  if (!skipTimeCalib_) {
118  const EcalTimeCalibConstantMap& itimeMap = itime->getMap();
120 
121  if (itime != itimeMap.end()) {
122  itimeconst = (*itime);
123  } else {
124  edm::LogError("EcalRecHitError") << "No time calib const found for xtal " << detid.rawId()
125  << "! something wrong with EcalTimeCalibConstants in your DB? ";
126  }
127  }
128 
129  // make the rechit and put in the output collection, unless recovery has to take care of it
130  if (!(flagmask_ & flagBits) || !killDeadChannels_) {
131  EcalRecHit myrechit(rechitMaker_->makeRecHit(uncalibRH,
132  icalconst * lasercalib,
133  (itimeconst + offsetTime),
134  /*recoflags_ 0*/
135  flagBits));
136 
137  if (detid.subdetId() == EcalBarrel && (lasercalib < EBLaserMIN_ || lasercalib > EBLaserMAX_))
139  if (detid.subdetId() == EcalEndcap && (lasercalib < EELaserMIN_ || lasercalib > EELaserMAX_))
140  myrechit.setFlag(EcalRecHit::kPoorCalib);
141  result.push_back(myrechit);
142  }
143 
144  return true;
145 }
146 
147 // Take our association map of dbstatuses-> recHit flagbits and return the apporpriate flagbit word
148 uint32_t EcalRecHitWorkerSimple::setFlagBits(const std::vector<std::vector<uint32_t> >& map, const uint32_t& status) {
149  for (unsigned int i = 0; i != map.size(); ++i) {
150  if (std::find(map[i].begin(), map[i].end(), status) != map[i].end())
151  return 0x1 << i;
152  }
153 
154  return 0;
155 }
156 
158 
EcalCondObjectContainer::end
const_iterator end() const
Definition: EcalCondObjectContainer.h:76
EcalRecHit::kNeighboursRecovered
Definition: EcalRecHit.h:29
EcalTimeOffsetConstantRcd
Definition: EcalTimeOffsetConstantRcd.h:5
EcalRecHit
Definition: EcalRecHit.h:15
EcalRecHit::kTPSaturated
Definition: EcalRecHit.h:33
mps_fire.i
i
Definition: mps_fire.py:355
EcalRecHitWorkerSimple::~EcalRecHitWorkerSimple
~EcalRecHitWorkerSimple() override
Definition: EcalRecHitWorkerSimple.cc:157
MessageLogger.h
EcalRecHitSimpleAlgo::setADCToGeVConstant
void setADCToGeVConstant(const float &value) override
make rechits from dataframes
Definition: EcalRecHitSimpleAlgo.h:23
EcalRecHitWorkerSimple::offtime
edm::ESHandle< EcalTimeOffsetConstant > offtime
Definition: EcalRecHitWorkerSimple.h:40
mps_update.status
status
Definition: mps_update.py:69
EcalRecHit::kL1SpikeFlag
Definition: EcalRecHit.h:34
AlCaHLTBitMon_ParallelJobs.p
p
Definition: AlCaHLTBitMon_ParallelJobs.py:153
EcalRecHit::Flags
Flags
Definition: EcalRecHit.h:20
EcalRecHitWorkerSimple::EELaserMIN_
double EELaserMIN_
Definition: EcalRecHitWorkerSimple.h:34
EcalRecHitWorkerSimple::laserCorrection_
bool laserCorrection_
Definition: EcalRecHitWorkerSimple.h:54
EcalTimeOffsetConstant::getEEValue
float getEEValue() const
Definition: EcalTimeOffsetConstant.h:21
edm::SortedCollection< EcalRecHit >
EcalRecHitWorkerSimple::set
void set(const edm::EventSetup &es) override
Definition: EcalRecHitWorkerSimple.cc:56
EcalTimeOffsetConstant::getEBValue
float getEBValue() const
Definition: EcalTimeOffsetConstant.h:20
EcalTimeCalibConstants.h
EcalRecHitWorkerSimple::run
bool run(const edm::Event &evt, const EcalUncalibratedRecHit &uncalibRH, EcalRecHitCollection &result) override
Definition: EcalRecHitWorkerSimple.cc:70
EcalRecHitWorkerSimple::laser
edm::ESHandle< EcalLaserDbService > laser
Definition: EcalRecHitWorkerSimple.h:44
edm::EventBase::time
edm::Timestamp time() const
Definition: EventBase.h:60
EcalRecHit::kTowerRecovered
Definition: EcalRecHit.h:30
spr::find
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:19
EcalCondObjectContainer< float >
EcalBarrel
Definition: EcalSubdetector.h:10
EcalIntercalibConstant
float EcalIntercalibConstant
Definition: EcalIntercalibConstants.h:10
end
#define end
Definition: vmac.h:39
EcalRecHitSimpleAlgo::makeRecHit
EcalRecHit makeRecHit(const EcalUncalibratedRecHit &uncalibRH, const float &intercalibConstant, const float &timeIntercalib=0, const uint32_t &flags=0) const override
Compute parameters.
Definition: EcalRecHitSimpleAlgo.h:32
DetId
Definition: DetId.h:17
MakerMacros.h
testProducerWithPsetDescEmpty_cfi.x1
x1
Definition: testProducerWithPsetDescEmpty_cfi.py:33
edm::EventSetup::get
T get() const
Definition: EventSetup.h:73
EcalTimeOffsetConstantRcd.h
EcalCondObjectContainer::find
const_iterator find(uint32_t rawId) const
Definition: EcalCondObjectContainer.h:53
EcalRecHitWorkerSimple::EcalRecHitWorkerSimple
EcalRecHitWorkerSimple(const edm::ParameterSet &, edm::ConsumesCollector &c)
Definition: EcalRecHitWorkerSimple.cc:15
StringToEnumValue.h
DEFINE_EDM_PLUGIN
#define DEFINE_EDM_PLUGIN(factory, type, name)
Definition: PluginFactory.h:124
EcalSeverityLevelAlgo.h
EcalRecHitWorkerSimple::agc
edm::ESHandle< EcalADCToGeVConstant > agc
Definition: EcalRecHitWorkerSimple.h:41
EcalLaserDbRecord
Definition: EcalLaserDbRecord.h:19
DetId::subdetId
constexpr int subdetId() const
get the contents of the subdetector field (not cast into any detector's numbering enum)
Definition: DetId.h:48
EcalEndcap
Definition: EcalSubdetector.h:10
EcalRecHitWorkerSimple::EBLaserMAX_
double EBLaserMAX_
Definition: EcalRecHitWorkerSimple.h:35
edm::ParameterSet
Definition: ParameterSet.h:36
EcalADCToGeVConstant::getEEValue
float getEEValue() const
Definition: EcalADCToGeVConstant.h:21
edm::LogError
Definition: MessageLogger.h:183
Event.h
EcalUncalibratedRecHit::id
DetId id() const
Definition: EcalUncalibratedRecHit.h:38
EcalChannelStatusRcd
Definition: EcalChannelStatusRcd.h:5
EcalRecHitWorkerSimple::EBLaserMIN_
double EBLaserMIN_
Definition: EcalRecHitWorkerSimple.h:33
edmplugin::PluginFactory
Definition: PluginFactory.h:34
EcalADCToGeVConstantRcd.h
EcalRecHitWorkerSimple.h
EcalRecHitWorkerSimple::chStatus
edm::ESHandle< EcalChannelStatus > chStatus
Definition: EcalRecHitWorkerSimple.h:42
edm::EventSetup
Definition: EventSetup.h:57
HltBtagPostValidation_cff.c
c
Definition: HltBtagPostValidation_cff.py:31
EcalRecHit::kDead
Definition: EcalRecHit.h:31
get
#define get
res
Definition: Electron.h:6
EcalRecHitWorkerSimple::ical
edm::ESHandle< EcalIntercalibConstants > ical
Definition: EcalRecHitWorkerSimple.h:38
EcalTimeCalibConstantsRcd
Definition: EcalTimeCalibConstantsRcd.h:5
EcalUncalibratedRecHit
Definition: EcalUncalibratedRecHit.h:8
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
EcalLaserDbRecord.h
EcalLaserDbService::getLaserCorrection
float getLaserCorrection(DetId const &xid, edm::Timestamp const &iTime) const
Definition: EcalLaserDbService.cc:26
EcalChannelStatusCode::Code
Code
Definition: EcalChannelStatusCode.h:20
EcalRecHitWorkerSimple::skipTimeCalib_
bool skipTimeCalib_
Definition: EcalRecHitWorkerSimple.h:55
DetId::rawId
constexpr uint32_t rawId() const
get the raw id
Definition: DetId.h:57
EcalRecHitWorkerSimple::itime
edm::ESHandle< EcalTimeCalibConstants > itime
Definition: EcalRecHitWorkerSimple.h:39
EcalRecHitWorkerSimple::EELaserMAX_
double EELaserMAX_
Definition: EcalRecHitWorkerSimple.h:36
EcalRecHitWorkerSimple::flagmask_
uint32_t flagmask_
Definition: EcalRecHitWorkerSimple.h:51
EventSetup.h
EcalRecHit::kPoorCalib
Definition: EcalRecHit.h:26
EcalRecHitSimpleAlgo
Definition: EcalRecHitSimpleAlgo.h:15
EcalRecHitWorkerSimple::v_chstatus_
std::vector< int > v_chstatus_
Definition: EcalRecHitWorkerSimple.h:43
EcalCondObjectContainer< EcalChannelStatusCode >::const_iterator
std::vector< Item >::const_iterator const_iterator
Definition: EcalCondObjectContainer.h:19
mps_fire.result
result
Definition: mps_fire.py:303
genParticles_cff.map
map
Definition: genParticles_cff.py:11
EcalRecHitWorkerFactory.h
EcalRecHitWorkerSimple::v_DB_reco_flags_
std::vector< std::vector< uint32_t > > v_DB_reco_flags_
Definition: EcalRecHitWorkerSimple.h:47
EcalTimeCalibConstantsRcd.h
dqmiolumiharvest.j
j
Definition: dqmiolumiharvest.py:66
EcalRecHit::setFlag
void setFlag(int flag)
set the flags (from Flags or ESFlags)
Definition: EcalRecHit.h:183
EcalRecHit::kKilled
Definition: EcalRecHit.h:32
EcalRecHitWorkerSimple::rechitMaker_
EcalRecHitSimpleAlgo * rechitMaker_
Definition: EcalRecHitWorkerSimple.h:57
edm::Event
Definition: Event.h:73
EcalRecHitWorkerSimple::killDeadChannels_
bool killDeadChannels_
Definition: EcalRecHitWorkerSimple.h:53
EcalADCToGeVConstant::getEBValue
float getEBValue() const
Definition: EcalADCToGeVConstant.h:20
EcalIntercalibConstantsRcd
Definition: EcalIntercalibConstantsRcd.h:5
EcalIntercalibConstantsRcd.h
EcalRecHitWorkerBaseClass
Definition: EcalRecHitWorkerBaseClass.h:13
EcalADCToGeVConstantRcd
Definition: EcalADCToGeVConstantRcd.h:5
begin
#define begin
Definition: vmac.h:32
edm::ConsumesCollector
Definition: ConsumesCollector.h:39
EcalChannelStatusRcd.h
EcalTimeCalibConstant
float EcalTimeCalibConstant
Definition: EcalTimeCalibConstants.h:10
EcalRecHitWorkerSimple
Definition: EcalRecHitWorkerSimple.h:23
EcalRecHitWorkerSimple::setFlagBits
uint32_t setFlagBits(const std::vector< std::vector< uint32_t > > &map, const uint32_t &status)
Definition: EcalRecHitWorkerSimple.cc:148