CMS 3D CMS Logo

PFEcalBarrelRecHitCreator.h
Go to the documentation of this file.
1 #ifndef RecoParticleFlow_PFClusterProducer_PFEcalBarrelRecHitCreator_h
2 #define RecoParticleFlow_PFClusterProducer_PFEcalBarrelRecHitCreator_h
3 
9 
13 
19 
27 
29 public:
31  : PFRecHitCreatorBase(iConfig, cc),
32  recHitToken_(cc.consumes<EcalRecHitCollection>(iConfig.getParameter<edm::InputTag>("src"))),
33  triggerTowerMap_(nullptr),
35  towerToken_(cc.esConsumes<edm::Transition::BeginLuminosityBlock>()) {
36  auto srF = iConfig.getParameter<edm::InputTag>("srFlags");
37  if (not srF.label().empty())
38  srFlagToken_ = cc.consumes<EBSrFlagCollection>(srF);
39  }
40 
41  void importRecHits(std::unique_ptr<reco::PFRecHitCollection>& out,
42  std::unique_ptr<reco::PFRecHitCollection>& cleaned,
43  const edm::Event& iEvent,
44  const edm::EventSetup& iSetup) override {
45  beginEvent(iEvent, iSetup);
46 
48 
50 
51  bool useSrF = false;
52  if (not srFlagToken_.isUninitialized()) {
53  iEvent.getByToken(srFlagToken_, srFlagHandle_);
54  useSrF = true;
55  }
56 
57  // get the ecal geometry
59 
60  const EcalBarrelGeometry* ecalGeo = dynamic_cast<const EcalBarrelGeometry*>(gTmp);
61 
62  iEvent.getByToken(recHitToken_, recHitHandle);
63  for (const auto& erh : *recHitHandle) {
64  const DetId& detid = erh.detid();
65  auto energy = erh.energy();
66  auto time = erh.time();
67  auto flags = erh.flagsBits();
68  bool hi = (useSrF ? isHighInterest(detid) : true);
69 
70  const auto thisCell = ecalGeo->getGeometry(detid);
71 
72  // find rechit geometry
73  if (!thisCell) {
74  throw cms::Exception("PFEcalBarrelRecHitCreator") << "detid " << detid.rawId() << "not found in geometry";
75  }
76 
77  out->emplace_back(thisCell, detid.rawId(), PFLayer::ECAL_BARREL, energy, flags);
78 
79  auto& rh = out->back();
80 
81  bool rcleaned = false;
82  bool keep = true;
83 
84  //Apply Q tests
85  for (const auto& qtest : qualityTests_) {
86  if (!qtest->test(rh, erh, rcleaned, hi)) {
87  keep = false;
88  }
89  }
90 
91  if (keep) {
92  rh.setTime(time);
93  rh.setDepth(1);
94  } else {
95  if (rcleaned)
96  cleaned->push_back(std::move(out->back()));
97  out->pop_back();
98  }
99  }
100  }
101 
102  void init(const edm::EventSetup& es) override { triggerTowerMap_ = &es.getData(towerToken_); }
103 
104 protected:
105  bool isHighInterest(const EBDetId& detid) {
106  bool result = false;
107  auto srf = srFlagHandle_->find(readOutUnitOf(detid));
108  if (srf == srFlagHandle_->end())
109  return false;
110  else
111  result = ((srf->value() & ~EcalSrFlag::SRF_FORCED_MASK) == EcalSrFlag::SRF_FULL);
112  return result;
113  }
114 
115  EcalTrigTowerDetId readOutUnitOf(const EBDetId& detid) const { return triggerTowerMap_->towerOf(detid); }
116 
119 
120  // ECAL trigger tower mapping
122  // selective readout flags collection
124 
125 private:
128 };
129 
130 #endif
EcalPreshowerTopology.h
PFRecHitCreatorBase.h
PFEcalBarrelRecHitCreator::srFlagToken_
edm::EDGetTokenT< EBSrFlagCollection > srFlagToken_
Definition: PFEcalBarrelRecHitCreator.h:118
EcalBarrelGeometry.h
CaloNavigator.h
PFRecHitCreatorBase::beginEvent
void beginEvent(const edm::Event &event, const edm::EventSetup &setup)
Definition: PFRecHitCreatorBase.h:43
edm::EDGetTokenT
Definition: EDGetToken.h:33
EBDetId
Definition: EBDetId.h:17
edm
HLT enums.
Definition: AlignableModifier.h:19
EBDetId.h
EEDetId.h
HLT_FULL_cff.InputTag
InputTag
Definition: HLT_FULL_cff.py:89301
EcalBarrelTopology.h
CaloGeometry::getSubdetectorGeometry
const CaloSubdetectorGeometry * getSubdetectorGeometry(const DetId &id) const
access the subdetector geometry for the given subdetector directly
Definition: CaloGeometry.cc:34
protons_cff.time
time
Definition: protons_cff.py:35
edm::SortedCollection< EcalRecHit >
PFEcalBarrelRecHitCreator::importRecHits
void importRecHits(std::unique_ptr< reco::PFRecHitCollection > &out, std::unique_ptr< reco::PFRecHitCollection > &cleaned, const edm::Event &iEvent, const edm::EventSetup &iSetup) override
Definition: PFEcalBarrelRecHitCreator.h:41
PFRecHitCreatorBase
Definition: PFRecHitCreatorBase.h:23
EcalTrigTowerDetId
Definition: EcalTrigTowerDetId.h:14
edm::Handle
Definition: AssociativeIterator.h:50
EcalBarrel
Definition: EcalSubdetector.h:10
EcalRecHitCollections.h
PFLayer::ECAL_BARREL
Definition: PFLayer.h:33
DetId
Definition: DetId.h:17
TruncatedPyramid.h
PFRecHitCreatorBase::qualityTests_
std::vector< std::unique_ptr< PFRecHitQTestBase > > qualityTests_
Definition: PFRecHitCreatorBase.h:48
EcalDigiCollections.h
edm::ESHandle< CaloGeometry >
HCALHighEnergyHPDFilter_cfi.energy
energy
Definition: HCALHighEnergyHPDFilter_cfi.py:5
runTheMatrix.keep
keep
Definition: runTheMatrix.py:345
EcalRecHit.h
PFEcalBarrelRecHitCreator::isHighInterest
bool isHighInterest(const EBDetId &detid)
Definition: PFEcalBarrelRecHitCreator.h:105
PFEcalBarrelRecHitCreator::init
void init(const edm::EventSetup &es) override
Definition: PFEcalBarrelRecHitCreator.h:102
CaloGeometryRecord.h
EcalTrigTowerDetId.h
PFEcalBarrelRecHitCreator::triggerTowerMap_
const EcalTrigTowerConstituentsMap * triggerTowerMap_
Definition: PFEcalBarrelRecHitCreator.h:121
EcalSubdetector.h
EcalTrigTowerConstituentsMap
Definition: EcalTrigTowerConstituentsMap.h:19
PFEcalBarrelRecHitCreator
Definition: PFEcalBarrelRecHitCreator.h:28
CaloSubdetectorGeometry.h
edm::ParameterSet
Definition: ParameterSet.h:47
edm::Transition
Transition
Definition: Transition.h:12
EcalBarrelGeometry
Definition: EcalBarrelGeometry.h:19
EcalEndcapGeometry.h
EcalEndcapTopology.h
PFEcalBarrelRecHitCreator::geomToken_
edm::ESGetToken< CaloGeometry, CaloGeometryRecord > geomToken_
Definition: PFEcalBarrelRecHitCreator.h:126
EcalSrFlag
Definition: EcalSrFlag.h:10
iEvent
int iEvent
Definition: GenABIO.cc:224
edm::EventSetup::getHandle
ESHandle< T > getHandle(const ESGetToken< T, R > &iToken) const
Definition: EventSetup.h:155
CaloSubdetectorGeometry::getGeometry
virtual std::shared_ptr< const CaloCellGeometry > getGeometry(const DetId &id) const
Get the cell geometry of a given detector id. Should return false if not found.
Definition: CaloSubdetectorGeometry.cc:36
edm::EventSetup
Definition: EventSetup.h:58
PFEcalBarrelRecHitCreator::PFEcalBarrelRecHitCreator
PFEcalBarrelRecHitCreator(const edm::ParameterSet &iConfig, edm::ConsumesCollector &cc)
Definition: PFEcalBarrelRecHitCreator.h:30
DetId::Ecal
Definition: DetId.h:27
cc
edm::ESGetToken< CaloGeometry, CaloGeometryRecord >
edm::EventSetup::getData
bool getData(T &iHolder) const
Definition: EventSetup.h:127
EcalTrigTowerConstituentsMap::towerOf
EcalTrigTowerDetId towerOf(const DetId &id) const
Get the tower id for this det id (or null if not known)
Definition: EcalTrigTowerConstituentsMap.cc:11
hi
Definition: EPCuts.h:4
PFEcalBarrelRecHitCreator::readOutUnitOf
EcalTrigTowerDetId readOutUnitOf(const EBDetId &detid) const
Definition: PFEcalBarrelRecHitCreator.h:115
CaloCellGeometry.h
EcalTrigTowerConstituentsMap.h
eostools.move
def move(src, dest)
Definition: eostools.py:511
DetId::rawId
constexpr uint32_t rawId() const
get the raw id
Definition: DetId.h:57
PFEcalBarrelRecHitCreator::towerToken_
edm::ESGetToken< EcalTrigTowerConstituentsMap, IdealGeometryRecord > towerToken_
Definition: PFEcalBarrelRecHitCreator.h:127
EcalSrFlag::SRF_FULL
static const int SRF_FULL
Definition: EcalSrFlag.h:24
Exception
Definition: hltDiff.cc:245
CaloGeometry.h
CaloSubdetectorGeometry
Definition: CaloSubdetectorGeometry.h:22
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
PFEcalBarrelRecHitCreator::recHitToken_
edm::EDGetTokenT< EcalRecHitCollection > recHitToken_
Definition: PFEcalBarrelRecHitCreator.h:117
MillePedeFileConverter_cfg.out
out
Definition: MillePedeFileConverter_cfg.py:31
mps_fire.result
result
Definition: mps_fire.py:311
PFEcalBarrelRecHitCreator::srFlagHandle_
edm::Handle< EBSrFlagCollection > srFlagHandle_
Definition: PFEcalBarrelRecHitCreator.h:123
DeDxTools::esConsumes
ESGetTokenH3DDVariant esConsumes(std::string const &Reccord, edm::ConsumesCollector &)
Definition: DeDxTools.cc:283
HLT_FULL_cff.flags
flags
Definition: HLT_FULL_cff.py:13168
edm::Event
Definition: Event.h:73
edm::InputTag
Definition: InputTag.h:15
edm::ConsumesCollector
Definition: ConsumesCollector.h:45