CMS 3D CMS Logo

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

#include <SimMuon/RPCDigitizer/plugins/RPCChamberMasker.cc>

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

Public Member Functions

 RPCChamberMasker (const edm::ParameterSet &)
 
 ~RPCChamberMasker () override
 
- Public Member Functions inherited from edm::stream::EDProducer<>
 EDProducer ()=default
 
bool hasAbilityToProduceInBeginLumis () const final
 
bool hasAbilityToProduceInBeginRuns () const final
 
bool hasAbilityToProduceInEndLumis () const final
 
bool hasAbilityToProduceInEndRuns () const final
 

Static Public Member Functions

static void fillDescriptions (edm::ConfigurationDescriptions &descriptions)
 

Private Member Functions

void beginRun (edm::Run const &, edm::EventSetup const &) override
 
void endRun (edm::Run const &, edm::EventSetup const &) override
 
void produce (edm::Event &, const edm::EventSetup &) override
 

Private Attributes

edm::InputTag digiTag_
 
std::map< RPCDetId, float > m_ChEffs
 
edm::EDGetTokenT< RPCDigiCollectionm_digiTag
 
bool theRE31_off
 
bool theRE41_off
 

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

Description:

Implementation: Class to mask RPC digis on a for single DetIds

Definition at line 52 of file RPCChamberMasker.cc.

Constructor & Destructor Documentation

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

Definition at line 84 of file RPCChamberMasker.cc.

References digiTag_, edm::ParameterSet::getParameter(), m_digiTag, theRE31_off, and theRE41_off.

85  : digiTag_(iConfig.getParameter<edm::InputTag>("digiTag")) {
86  m_digiTag = consumes<RPCDigiCollection>(digiTag_);
87  produces<RPCDigiCollection>();
88 
89  theRE31_off = iConfig.getParameter<bool>("descopeRE31");
90  theRE41_off = iConfig.getParameter<bool>("descopeRE41");
91 }
T getParameter(std::string const &) const
edm::InputTag digiTag_
edm::EDGetTokenT< RPCDigiCollection > m_digiTag
RPCChamberMasker::~RPCChamberMasker ( )
override

Definition at line 93 of file RPCChamberMasker.cc.

93 {}

Member Function Documentation

void RPCChamberMasker::beginRun ( edm::Run const &  run,
edm::EventSetup const &  iSetup 
)
overrideprivate

Definition at line 122 of file RPCChamberMasker.cc.

References edm::EventSetup::get(), m_ChEffs, MuonSystemAging::m_RPCChambEffs, DetId::rawId(), RPCGeometry::rolls(), RPCDetId::station(), theRE31_off, and theRE41_off.

122  {
123  m_ChEffs.clear();
124 
126  iSetup.get<MuonGeometryRecord>().get(rpcGeom);
127 
129  iSetup.get<MuonSystemAgingRcd>().get(agingObj);
130 
131  const auto rolls = rpcGeom->rolls();
132 
133  for (const auto* roll : rolls) {
134  RPCDetId rollId = roll->id();
135  uint32_t rollRawId = rollId.rawId();
136 
137  Float_t chamberEff = 1.;
138  for (const auto& agingPair : agingObj->m_RPCChambEffs) {
139  if (agingPair.first == rollRawId) {
140  chamberEff = agingPair.second;
141  break;
142  }
143 
144  if (theRE31_off && (roll->isIRPC() && (rollId.station() == 3))) {
145  chamberEff = 0;
146  }
147  if (theRE41_off && (roll->isIRPC() && (rollId.station() == 4))) {
148  chamberEff = 0;
149  }
150  }
151  m_ChEffs[rollId] = chamberEff;
152  }
153 }
std::map< RPCDetId, float > m_ChEffs
const std::vector< const RPCRoll * > & rolls() const
Return a vector of all RPC rolls.
Definition: RPCGeometry.cc:44
constexpr uint32_t rawId() const
get the raw id
Definition: DetId.h:57
std::map< unsigned int, float > m_RPCChambEffs
int station() const
Definition: RPCDetId.h:78
void RPCChamberMasker::endRun ( edm::Run const &  ,
edm::EventSetup const &   
)
overrideprivate

Definition at line 157 of file RPCChamberMasker.cc.

157 {}
void RPCChamberMasker::fillDescriptions ( edm::ConfigurationDescriptions descriptions)
static

Definition at line 160 of file RPCChamberMasker.cc.

References edm::ConfigurationDescriptions::add(), edm::ParameterSetDescription::add(), DEFINE_FWK_MODULE, and HLT_2018_cff::InputTag.

160  {
162  desc.add<edm::InputTag>("digiTag", edm::InputTag("preRPCDigis"));
163  desc.add<bool>("descopeRE31", false);
164  desc.add<bool>("descopeRE41", false);
165  descriptions.add("rpcChamberMasker", desc);
166 }
ParameterDescriptionBase * add(U const &iLabel, T const &value)
void add(std::string const &label, ParameterSetDescription const &psetDescription)
void RPCChamberMasker::produce ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
overrideprivate

Definition at line 100 of file RPCChamberMasker.cc.

References digiTag_, edm::Event::getByToken(), edm::RandomNumberGenerator::getEngine(), edm::InputTag::label(), m_ChEffs, m_digiTag, eostools::move(), edm::Event::put(), and edm::Event::streamID().

100  {
101  using namespace edm;
103  CLHEP::HepRandomEngine& randGen = randGenService->getEngine(iEvent.streamID());
104 
105  std::unique_ptr<RPCDigiCollection> filteredDigis(new RPCDigiCollection());
106  if (!digiTag_.label().empty()) {
108  iEvent.getByToken(m_digiTag, rpcDigis);
109 
110  for (const auto& rpcLayerId : (*rpcDigis)) {
111  int id = (rpcLayerId.first).rawId();
112  auto chEffIt = m_ChEffs.find(id);
113  if ((chEffIt != m_ChEffs.end()) && (randGen.flat() <= chEffIt->second))
114  filteredDigis->put(rpcLayerId.second, rpcLayerId.first);
115  }
116  }
117  iEvent.put(std::move(filteredDigis));
118 }
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:131
std::map< RPCDetId, float > m_ChEffs
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:525
virtual CLHEP::HepRandomEngine & getEngine(StreamID const &)=0
Use this engine in event methods.
edm::InputTag digiTag_
MuonDigiCollection< RPCDetId, RPCDigi > RPCDigiCollection
std::string const & label() const
Definition: InputTag.h:36
HLT enums.
edm::EDGetTokenT< RPCDigiCollection > m_digiTag
StreamID streamID() const
Definition: Event.h:96
def move(src, dest)
Definition: eostools.py:511

Member Data Documentation

edm::InputTag RPCChamberMasker::digiTag_
private

Definition at line 66 of file RPCChamberMasker.cc.

Referenced by produce(), and RPCChamberMasker().

std::map<RPCDetId, float> RPCChamberMasker::m_ChEffs
private

Definition at line 68 of file RPCChamberMasker.cc.

Referenced by beginRun(), and produce().

edm::EDGetTokenT<RPCDigiCollection> RPCChamberMasker::m_digiTag
private

Definition at line 67 of file RPCChamberMasker.cc.

Referenced by produce(), and RPCChamberMasker().

bool RPCChamberMasker::theRE31_off
private

Definition at line 69 of file RPCChamberMasker.cc.

Referenced by beginRun(), and RPCChamberMasker().

bool RPCChamberMasker::theRE41_off
private

Definition at line 70 of file RPCChamberMasker.cc.

Referenced by beginRun(), and RPCChamberMasker().