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()) {
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
edm::EDGetTokenT< EBSrFlagCollection > srFlagToken_
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
T getParameter(std::string const &) const
const CaloSubdetectorGeometry * getSubdetectorGeometry(const DetId &id) const
access the subdetector geometry for the given subdetector directly
Definition: CaloGeometry.cc:49
std::vector< std::unique_ptr< PFRecHitQTestBase > > qualityTests_
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:517
constexpr uint32_t rawId() const
get the raw id
Definition: DetId.h:50
std::vector< Variable::Flags > flags
Definition: MVATrainer.cc:135
void importRecHits(std::unique_ptr< reco::PFRecHitCollection > &out, std::unique_ptr< reco::PFRecHitCollection > &cleaned, const edm::Event &iEvent, const edm::EventSetup &iSetup) override
PFEcalBarrelRecHitCreator(const edm::ParameterSet &iConfig, edm::ConsumesCollector &iC)
edm::EDGetTokenT< EcalRecHitCollection > recHitToken_
EcalTrigTowerDetId towerOf(const DetId &id) const
Get the tower id for this det id (or null if not known)
const int keep
int iEvent
Definition: GenABIO.cc:224
static const int SRF_FULL
Definition: EcalSrFlag.h:24
void beginEvent(const edm::Event &event, const edm::EventSetup &setup)
void init(const edm::EventSetup &es) override
Definition: DetId.h:18
edm::Handle< EBSrFlagCollection > srFlagHandle_
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.
EcalTrigTowerDetId readOutUnitOf(const EBDetId &detid) const
const EcalTrigTowerConstituentsMap * triggerTowerMap_
T get() const
Definition: EventSetup.h:71
bool isHighInterest(const EBDetId &detid)
T const * product() const
Definition: ESHandle.h:86
def move(src, dest)
Definition: eostools.py:511