CMS 3D CMS Logo

List of all members | Public Member Functions | Static Public Member Functions | Private Member Functions | Private Attributes
GEMChamberMasker Class Reference
Inheritance diagram for GEMChamberMasker:
edm::stream::EDProducer<>

Public Member Functions

 GEMChamberMasker (const edm::ParameterSet &)
 
 ~GEMChamberMasker () override
 
- Public Member Functions inherited from edm::stream::EDProducer<>
 EDProducer ()=default
 
bool hasAbilityToProduceInBeginLumis () const final
 
bool hasAbilityToProduceInBeginProcessBlocks () const final
 
bool hasAbilityToProduceInBeginRuns () const final
 
bool hasAbilityToProduceInEndLumis () const final
 
bool hasAbilityToProduceInEndProcessBlocks () 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_
 
bool ge11Minus_
 
bool ge11Plus_
 
bool ge21Minus_
 
bool ge21Plus_
 
edm::ESGetToken< MuonSystemAging, MuonSystemAgingRcdm_agingObj
 
edm::EDGetTokenT< GEMDigiCollectionm_digiTag
 
std::map< unsigned int, float > m_maskedGEMIDs
 

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 30 of file GEMChamberMasker.cc.

Constructor & Destructor Documentation

◆ GEMChamberMasker()

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

Definition at line 66 of file GEMChamberMasker.cc.

67  : digiTag_(iConfig.getParameter<edm::InputTag>("digiTag")),
68  ge11Minus_(iConfig.getParameter<bool>("ge11Minus")),
69  ge11Plus_(iConfig.getParameter<bool>("ge11Plus")),
70  ge21Minus_(iConfig.getParameter<bool>("ge21Minus")),
71  ge21Plus_(iConfig.getParameter<bool>("ge21Plus")) {
72  m_digiTag = consumes<GEMDigiCollection>(digiTag_);
73  m_agingObj = esConsumes<MuonSystemAging, MuonSystemAgingRcd, edm::Transition::BeginRun>();
74  produces<GEMDigiCollection>();
75 }

References digiTag_, m_agingObj, and m_digiTag.

◆ ~GEMChamberMasker()

GEMChamberMasker::~GEMChamberMasker ( )
override

Definition at line 77 of file GEMChamberMasker.cc.

77 {}

Member Function Documentation

◆ beginRun()

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

Definition at line 112 of file GEMChamberMasker.cc.

112  {
113  edm::ESHandle<MuonSystemAging> agingObj = iSetup.getHandle(m_agingObj);
114 
115  m_maskedGEMIDs = agingObj->m_GEMChambEffs;
116 }

References edm::EventSetup::getHandle(), m_agingObj, MuonSystemAging::m_GEMChambEffs, and m_maskedGEMIDs.

◆ endRun()

void GEMChamberMasker::endRun ( edm::Run const &  ,
edm::EventSetup const &   
)
overrideprivate

Definition at line 120 of file GEMChamberMasker.cc.

120 {}

◆ fillDescriptions()

void GEMChamberMasker::fillDescriptions ( edm::ConfigurationDescriptions descriptions)
static

Definition at line 122 of file GEMChamberMasker.cc.

122  {
124  desc.add<edm::InputTag>("digiTag", edm::InputTag("simMuonGEMDigis"));
125  desc.add<bool>("ge11Minus", true);
126  desc.add<bool>("ge11Plus", true);
127  desc.add<bool>("ge21Minus", true);
128  desc.add<bool>("ge21Plus", true);
129 
130  descriptions.add("gemChamberMasker", desc);
131 }

References edm::ConfigurationDescriptions::add(), submitPVResolutionJobs::desc, and HLT_FULL_cff::InputTag.

◆ produce()

void GEMChamberMasker::produce ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
overrideprivate

Definition at line 84 of file GEMChamberMasker.cc.

84  {
85  using namespace edm;
86  std::unique_ptr<GEMDigiCollection> filteredDigis(new GEMDigiCollection());
87 
88  if (!digiTag_.label().empty()) {
90  iEvent.getByToken(m_digiTag, gemDigis);
91 
92  for (const auto& gemLayerId : (*gemDigis)) {
93  auto chambId = gemLayerId.first.chamberId();
94 
95  bool keepDigi = (!ge11Minus_ && chambId.station() == 1 && chambId.region() < 0) ||
96  (!ge11Plus_ && chambId.station() == 1 && chambId.region() > 0) ||
97  (!ge21Minus_ && chambId.station() == 2 && chambId.region() < 0) ||
98  (!ge21Plus_ && chambId.station() == 2 && chambId.region() > 0);
99 
100  uint32_t rawId = chambId.rawId();
101  if (keepDigi || m_maskedGEMIDs.find(rawId) == m_maskedGEMIDs.end()) {
102  filteredDigis->put(gemLayerId.second, gemLayerId.first);
103  }
104  }
105  }
106 
107  iEvent.put(std::move(filteredDigis));
108 }

References digiTag_, ge11Minus_, ge11Plus_, ge21Minus_, ge21Plus_, iEvent, edm::InputTag::label(), m_digiTag, m_maskedGEMIDs, and eostools::move().

Member Data Documentation

◆ digiTag_

edm::InputTag GEMChamberMasker::digiTag_
private

Definition at line 44 of file GEMChamberMasker.cc.

Referenced by GEMChamberMasker(), and produce().

◆ ge11Minus_

bool GEMChamberMasker::ge11Minus_
private

Definition at line 45 of file GEMChamberMasker.cc.

Referenced by produce().

◆ ge11Plus_

bool GEMChamberMasker::ge11Plus_
private

Definition at line 46 of file GEMChamberMasker.cc.

Referenced by produce().

◆ ge21Minus_

bool GEMChamberMasker::ge21Minus_
private

Definition at line 47 of file GEMChamberMasker.cc.

Referenced by produce().

◆ ge21Plus_

bool GEMChamberMasker::ge21Plus_
private

Definition at line 48 of file GEMChamberMasker.cc.

Referenced by produce().

◆ m_agingObj

edm::ESGetToken<MuonSystemAging, MuonSystemAgingRcd> GEMChamberMasker::m_agingObj
private

Definition at line 51 of file GEMChamberMasker.cc.

Referenced by beginRun(), and GEMChamberMasker().

◆ m_digiTag

edm::EDGetTokenT<GEMDigiCollection> GEMChamberMasker::m_digiTag
private

Definition at line 50 of file GEMChamberMasker.cc.

Referenced by GEMChamberMasker(), and produce().

◆ m_maskedGEMIDs

std::map<unsigned int, float> GEMChamberMasker::m_maskedGEMIDs
private

Definition at line 52 of file GEMChamberMasker.cc.

Referenced by beginRun(), and produce().

GEMDigiCollection
MuonDigiCollection< GEMDetId, GEMDigi > GEMDigiCollection
Definition: GEMDigiCollection.h:13
edm
HLT enums.
Definition: AlignableModifier.h:19
GEMChamberMasker::ge11Plus_
bool ge11Plus_
Definition: GEMChamberMasker.cc:46
HLT_FULL_cff.InputTag
InputTag
Definition: HLT_FULL_cff.py:89287
GEMChamberMasker::m_agingObj
edm::ESGetToken< MuonSystemAging, MuonSystemAgingRcd > m_agingObj
Definition: GEMChamberMasker.cc:51
edm::ParameterSetDescription
Definition: ParameterSetDescription.h:52
edm::Handle< GEMDigiCollection >
edm::InputTag::label
std::string const & label() const
Definition: InputTag.h:36
edm::ConfigurationDescriptions::add
void add(std::string const &label, ParameterSetDescription const &psetDescription)
Definition: ConfigurationDescriptions.cc:57
edm::ESHandle
Definition: DTSurvey.h:22
GEMChamberMasker::m_digiTag
edm::EDGetTokenT< GEMDigiCollection > m_digiTag
Definition: GEMChamberMasker.cc:50
GEMChamberMasker::ge21Plus_
bool ge21Plus_
Definition: GEMChamberMasker.cc:48
GEMChamberMasker::m_maskedGEMIDs
std::map< unsigned int, float > m_maskedGEMIDs
Definition: GEMChamberMasker.cc:52
GEMChamberMasker::ge21Minus_
bool ge21Minus_
Definition: GEMChamberMasker.cc:47
iEvent
int iEvent
Definition: GenABIO.cc:224
GEMChamberMasker::ge11Minus_
bool ge11Minus_
Definition: GEMChamberMasker.cc:45
submitPVResolutionJobs.desc
string desc
Definition: submitPVResolutionJobs.py:251
eostools.move
def move(src, dest)
Definition: eostools.py:511
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
GEMChamberMasker::digiTag_
edm::InputTag digiTag_
Definition: GEMChamberMasker.cc:44
edm::InputTag
Definition: InputTag.h:15
MuonSystemAging::m_GEMChambEffs
std::map< unsigned int, float > m_GEMChambEffs
Definition: MuonSystemAging.h:22