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, iC) {
33  auto srF = iConfig.getParameter<edm::InputTag>("srFlags");
34  if (not srF.label().empty())
36  triggerTowerMap_ = nullptr;
37  }
38 
39  void importRecHits(std::unique_ptr<reco::PFRecHitCollection>& out,
40  std::unique_ptr<reco::PFRecHitCollection>& cleaned,
41  const edm::Event& iEvent,
42  const edm::EventSetup& iSetup) override {
43  beginEvent(iEvent, iSetup);
44 
46 
48  iSetup.get<CaloGeometryRecord>().get(geoHandle);
49 
50  bool useSrF = false;
51  if (not srFlagToken_.isUninitialized()) {
52  iEvent.getByToken(srFlagToken_, srFlagHandle_);
53  useSrF = true;
54  }
55 
56  // get the ecal geometry
58 
59  const EcalBarrelGeometry* ecalGeo = dynamic_cast<const EcalBarrelGeometry*>(gTmp);
60 
61  iEvent.getByToken(recHitToken_, recHitHandle);
62  for (const auto& erh : *recHitHandle) {
63  const DetId& detid = erh.detid();
64  auto energy = erh.energy();
65  auto time = erh.time();
66  auto flags = erh.flagsBits();
67  bool hi = (useSrF ? isHighInterest(detid) : true);
68 
69  const auto thisCell = ecalGeo->getGeometry(detid);
70 
71  // find rechit geometry
72  if (!thisCell) {
73  throw cms::Exception("PFEcalBarrelRecHitCreator") << "detid " << detid.rawId() << "not found in geometry";
74  }
75 
76  out->emplace_back(thisCell, detid.rawId(), PFLayer::ECAL_BARREL, energy, flags);
77 
78  auto& rh = out->back();
79 
80  bool rcleaned = false;
81  bool keep = true;
82 
83  //Apply Q tests
84  for (const auto& qtest : qualityTests_) {
85  if (!qtest->test(rh, erh, rcleaned, hi)) {
86  keep = false;
87  }
88  }
89 
90  if (keep) {
91  rh.setTime(time);
92  rh.setDepth(1);
93  } else {
94  if (rcleaned)
95  cleaned->push_back(std::move(out->back()));
96  out->pop_back();
97  }
98  }
99  }
100 
101  void init(const edm::EventSetup& es) override {
103  es.get<IdealGeometryRecord>().get(hTriggerTowerMap);
104  triggerTowerMap_ = hTriggerTowerMap.product();
105  }
106 
107 protected:
108  bool isHighInterest(const EBDetId& detid) {
109  bool result = false;
110  auto srf = srFlagHandle_->find(readOutUnitOf(detid));
111  if (srf == srFlagHandle_->end())
112  return false;
113  else
114  result = ((srf->value() & ~EcalSrFlag::SRF_FORCED_MASK) == EcalSrFlag::SRF_FULL);
115  return result;
116  }
117 
118  EcalTrigTowerDetId readOutUnitOf(const EBDetId& detid) const { return triggerTowerMap_->towerOf(detid); }
119 
122 
123  // ECAL trigger tower mapping
125  // selective readout flags collection
127 };
128 
129 #endif
EcalPreshowerTopology.h
edm::ESHandle::product
T const * product() const
Definition: ESHandle.h:86
PFRecHitCreatorBase.h
PFEcalBarrelRecHitCreator::srFlagToken_
edm::EDGetTokenT< EBSrFlagCollection > srFlagToken_
Definition: PFEcalBarrelRecHitCreator.h:121
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
CaloGeometryRecord
Definition: CaloGeometryRecord.h:30
EBDetId
Definition: EBDetId.h:17
EBDetId.h
PFEcalBarrelRecHitCreator::PFEcalBarrelRecHitCreator
PFEcalBarrelRecHitCreator(const edm::ParameterSet &iConfig, edm::ConsumesCollector &iC)
Definition: PFEcalBarrelRecHitCreator.h:30
EEDetId.h
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:39
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:39
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
edm::EventSetup::get
T get() const
Definition: EventSetup.h:87
TruncatedPyramid.h
PFRecHitCreatorBase::qualityTests_
std::vector< std::unique_ptr< PFRecHitQTestBase > > qualityTests_
Definition: PFRecHitCreatorBase.h:48
EcalDigiCollections.h
edm::ESHandle< CaloGeometry >
edm::ConsumesCollector::consumes
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
Definition: ConsumesCollector.h:55
HCALHighEnergyHPDFilter_cfi.energy
energy
Definition: HCALHighEnergyHPDFilter_cfi.py:5
EcalRecHit.h
PFEcalBarrelRecHitCreator::isHighInterest
bool isHighInterest(const EBDetId &detid)
Definition: PFEcalBarrelRecHitCreator.h:108
PFEcalBarrelRecHitCreator::init
void init(const edm::EventSetup &es) override
Definition: PFEcalBarrelRecHitCreator.h:101
CaloGeometryRecord.h
EcalTrigTowerDetId.h
PFEcalBarrelRecHitCreator::triggerTowerMap_
const EcalTrigTowerConstituentsMap * triggerTowerMap_
Definition: PFEcalBarrelRecHitCreator.h:124
EcalSubdetector.h
EcalTrigTowerConstituentsMap
Definition: EcalTrigTowerConstituentsMap.h:19
PFEcalBarrelRecHitCreator
Definition: PFEcalBarrelRecHitCreator.h:28
CaloSubdetectorGeometry.h
edm::ParameterSet
Definition: ParameterSet.h:47
EcalBarrelGeometry
Definition: EcalBarrelGeometry.h:19
EcalEndcapGeometry.h
EcalEndcapTopology.h
EcalSrFlag
Definition: EcalSrFlag.h:10
iEvent
int iEvent
Definition: GenABIO.cc:224
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
DetId::Ecal
Definition: DetId.h:27
get
#define get
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:118
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
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:120
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:126
HLT_FULL_cff.flags
flags
Definition: HLT_FULL_cff.py:13150
edm::Event
Definition: Event.h:73
keep
const int keep
Definition: GenParticlePruner.cc:48
edm::InputTag
Definition: InputTag.h:15
edm::ConsumesCollector
Definition: ConsumesCollector.h:45
IdealGeometryRecord
Definition: IdealGeometryRecord.h:25