CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
InterestingEcalDetIdProducer Class Reference

#include <InterestingEcalDetIdProducer.h>

Inheritance diagram for InterestingEcalDetIdProducer:
edm::stream::EDProducer<>

Public Member Functions

void beginRun (const edm::Run &, const edm::EventSetup &) override
 
 InterestingEcalDetIdProducer (const edm::ParameterSet &)
 
void produce (edm::Event &, const edm::EventSetup &) override
 
 ~InterestingEcalDetIdProducer () override
 
- Public Member Functions inherited from edm::stream::EDProducer<>
 EDProducer ()=default
 
bool hasAbilityToProduceInLumis () const final
 
bool hasAbilityToProduceInRuns () const final
 

Private Attributes

const CaloTopologycaloTopology_
 
edm::InputTag inputCollection_
 
edm::EDGetTokenT< reco::MuonCollectionmuonToken_
 

Additional Inherited Members

- Public Types inherited from edm::stream::EDProducer<>
typedef CacheContexts< T... > CacheTypes
 
typedef CacheTypes::GlobalCache GlobalCache
 
typedef AbilityChecker< T... > HasAbility
 
typedef CacheTypes::LuminosityBlockCache LuminosityBlockCache
 
typedef LuminosityBlockContextT< LuminosityBlockCache, RunCache, GlobalCacheLuminosityBlockContext
 
typedef CacheTypes::LuminosityBlockSummaryCache LuminosityBlockSummaryCache
 
typedef CacheTypes::RunCache RunCache
 
typedef RunContextT< RunCache, GlobalCacheRunContext
 
typedef CacheTypes::RunSummaryCache RunSummaryCache
 

Detailed Description

Definition at line 13 of file InterestingEcalDetIdProducer.h.

Constructor & Destructor Documentation

InterestingEcalDetIdProducer::InterestingEcalDetIdProducer ( const edm::ParameterSet iConfig)
explicit

Definition at line 23 of file InterestingEcalDetIdProducer.cc.

References edm::ParameterSet::getParameter(), inputCollection_, and muonToken_.

24 {
25  inputCollection_ = iConfig.getParameter< edm::InputTag >("inputCollection");
26  produces< DetIdCollection >() ;
27  muonToken_ = consumes<reco::MuonCollection>(inputCollection_);
28 }
T getParameter(std::string const &) const
edm::EDGetTokenT< reco::MuonCollection > muonToken_
InterestingEcalDetIdProducer::~InterestingEcalDetIdProducer ( )
override

Definition at line 31 of file InterestingEcalDetIdProducer.cc.

32 {}

Member Function Documentation

void InterestingEcalDetIdProducer::beginRun ( const edm::Run run,
const edm::EventSetup iSetup 
)
override

Definition at line 34 of file InterestingEcalDetIdProducer.cc.

References caloTopology_, and edm::EventSetup::get().

35 {
36  edm::ESHandle<CaloTopology> theCaloTopology;
37  iSetup.get<CaloTopologyRecord>().get(theCaloTopology);
38  caloTopology_ = &(*theCaloTopology);
39 }
T get() const
Definition: EventSetup.h:71
void InterestingEcalDetIdProducer::produce ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
override

Definition at line 42 of file InterestingEcalDetIdProducer.cc.

References caloTopology_, DetId::Ecal, spr::find(), edm::Event::getByToken(), CaloTopology::getSubdetectorTopology(), CaloSubdetectorTopology::getWindow(), triggerObjects_cff::id, photons_cff::ids, interestingDetIdCollectionProducer_cfi::interestingDetIdCollection, eostools::move(), metsig::muon, extraflags_cff::muons, muonToken_, edm::Event::put(), and ecaldqm::topology().

44 {
46  iEvent.getByToken(muonToken_,muons);
47 
48  auto interestingDetIdCollection = std::make_unique<DetIdCollection>();
49 
50  for(reco::MuonCollection::const_iterator muon = muons->begin(); muon != muons->end(); ++muon){
51  if (! muon->isEnergyValid() ) continue;
52  if ( muon->calEnergy().ecal_id.rawId()==0 ) continue;
53  const CaloSubdetectorTopology* topology = caloTopology_->getSubdetectorTopology(DetId::Ecal,muon->calEnergy().ecal_id.subdetId());
54  const std::vector<DetId>& ids = topology->getWindow(muon->calEnergy().ecal_id, 5, 5);
55  for ( std::vector<DetId>::const_iterator id = ids.begin(); id != ids.end(); ++id )
57  == interestingDetIdCollection->end())
58  interestingDetIdCollection->push_back(*id);
59  }
61 }
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:125
CaloTopology const * topology(0)
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:517
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:20
edm::EDGetTokenT< reco::MuonCollection > muonToken_
virtual std::vector< DetId > getWindow(const DetId &id, const int &northSouthSize, const int &eastWestSize) const
const CaloSubdetectorTopology * getSubdetectorTopology(const DetId &id) const
access the subdetector Topology for the given subdetector directly
Definition: CaloTopology.cc:20
def move(src, dest)
Definition: eostools.py:511

Member Data Documentation

const CaloTopology* InterestingEcalDetIdProducer::caloTopology_
private

Definition at line 23 of file InterestingEcalDetIdProducer.h.

Referenced by beginRun(), and produce().

edm::InputTag InterestingEcalDetIdProducer::inputCollection_
private

Definition at line 21 of file InterestingEcalDetIdProducer.h.

Referenced by InterestingEcalDetIdProducer().

edm::EDGetTokenT<reco::MuonCollection> InterestingEcalDetIdProducer::muonToken_
private

Definition at line 22 of file InterestingEcalDetIdProducer.h.

Referenced by InterestingEcalDetIdProducer(), and produce().