CMS 3D CMS Logo

PFEcalEndcapRecHitCreator.h
Go to the documentation of this file.
1 #ifndef RecoParticleFlow_PFClusterProducer_PFEcalEndcapRecHitCreator_h
2 #define RecoParticleFlow_PFClusterProducer_PFEcalEndcapRecHitCreator_h
3 
9 
13 
19 
29 
31 
32  public:
34  PFRecHitCreatorBase(iConfig,iC)
35  {
37  auto srF = iConfig.getParameter<edm::InputTag>("srFlags");
38  if (not srF.label().empty())
40  elecMap_ = nullptr;
41  }
42 
43  void importRecHits(std::unique_ptr<reco::PFRecHitCollection>&out,std::unique_ptr<reco::PFRecHitCollection>& cleaned ,const edm::Event& iEvent,const edm::EventSetup& iSetup) override {
44 
45  beginEvent(iEvent,iSetup);
46 
48 
50  iSetup.get<CaloGeometryRecord>().get(geoHandle);
51 
52  bool useSrF = false;
53  if (not srFlagToken_.isUninitialized()){
55  useSrF = true;
56  }
57 
58  // get the ecal geometry
59  const CaloSubdetectorGeometry *gTmp =
61 
62  const EcalEndcapGeometry *ecalGeo = dynamic_cast<const EcalEndcapGeometry*>(gTmp);
63 
64  iEvent.getByToken(recHitToken_,recHitHandle);
65  for(const auto& erh : *recHitHandle ) {
66  const DetId& detid = erh.detid();
67  auto energy = erh.energy();
68  auto time = erh.time();
69 
70  bool hi = (useSrF ? isHighInterest(detid) : true);
71 
72  std::shared_ptr<const CaloCellGeometry> thisCell= ecalGeo->getGeometry(detid);
73 
74  // find rechit geometry
75  if(!thisCell) {
76  throw cms::Exception("PFEcalEndcapRecHitCreator")
77  << "detid "<< detid.rawId() << "not found in geometry";
78  }
79 
80  out->emplace_back(thisCell, detid.rawId(), PFLayer::ECAL_ENDCAP, energy);
81 
82  auto & rh = out->back();
83 
84  bool rcleaned = false;
85  bool keep=true;
86 
87  //Apply Q tests
88  for( const auto& qtest : qualityTests_ ) {
89  if (!qtest->test(rh,erh,rcleaned,hi)) {
90  keep = false;
91  }
92  }
93 
94  if(keep) {
95  rh.setTime(time);
96  rh.setDepth(1);
97  }
98  else {
99  if (rcleaned)
100  cleaned->push_back(std::move(out->back()));
101  out->pop_back();
102  }
103  }
104  }
105 
106  void init(const edm::EventSetup &es) override {
107 
109  es.get< EcalMappingRcd >().get(ecalmapping);
110  elecMap_ = ecalmapping.product();
111 
112  }
113 
114  protected:
115 
116 
117  bool isHighInterest(const EEDetId& detid) {
118  bool result=false;
119  auto srf = srFlagHandle_->find(readOutUnitOf(detid));
120  if(srf==srFlagHandle_->end()) return false;
121  else result = ((srf->value() & ~EcalSrFlag::SRF_FORCED_MASK) == EcalSrFlag::SRF_FULL);
122  return result;
123  }
124 
125  EcalScDetId readOutUnitOf(const EEDetId& detid) const{
126  const EcalElectronicsId& EcalElecId = elecMap_->getElectronicsId(detid);
127  int iDCC= EcalElecId.dccId();
128  int iDccChan = EcalElecId.towerId();
129  const bool ignoreSingle = true;
130  const std::vector<EcalScDetId> id = elecMap_->getEcalScDetId(iDCC, iDccChan, ignoreSingle);
131  return !id.empty()?id[0]:EcalScDetId();
132  }
133 
134 
137 
139 
140  // Ecal electronics/geometrical mapping
142  // selective readout flags collection
144 
145 };
146 
147 #endif
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
Ecal readout channel identification [32:20] Unused (so far) [19:13] DCC id [12:6] tower [5:3] strip [...
edm::EDGetTokenT< EcalRecHitCollection > recHitToken_
constexpr uint32_t rawId() const
get the raw id
Definition: DetId.h:50
int towerId() const
get the tower id
bool isHighInterest(const EEDetId &detid)
void init(const edm::EventSetup &es) override
EcalElectronicsId getElectronicsId(const DetId &id) const
Get the electronics id for this det id.
const int keep
int iEvent
Definition: GenABIO.cc:224
PFEcalEndcapRecHitCreator(const edm::ParameterSet &iConfig, edm::ConsumesCollector &iC)
static const int SRF_FULL
Definition: EcalSrFlag.h:24
void beginEvent(const edm::Event &event, const edm::EventSetup &setup)
int dccId() const
get the DCC (Ecal Local DCC value not global one) id
std::vector< EcalScDetId > getEcalScDetId(int DCCid, int DCC_Channel, bool ignoreSingleCrystal=true) const
Definition: DetId.h:18
void importRecHits(std::unique_ptr< reco::PFRecHitCollection > &out, std::unique_ptr< reco::PFRecHitCollection > &cleaned, const edm::Event &iEvent, const edm::EventSetup &iSetup) override
edm::Handle< EESrFlagCollection > srFlagHandle_
EcalScDetId readOutUnitOf(const EEDetId &detid) const
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.
edm::EDGetTokenT< EESrFlagCollection > srFlagToken_
T get() const
Definition: EventSetup.h:71
const EcalTrigTowerConstituentsMap * eTTmap_
const EcalElectronicsMapping * elecMap_
T const * product() const
Definition: ESHandle.h:86
def move(src, dest)
Definition: eostools.py:511