CMS 3D CMS Logo

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

#include <PhysicsTools/L1TriggerResultsConverter/plugins/L1TriggerResultsConverter.cc>

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

Public Member Functions

 L1TriggerResultsConverter (const edm::ParameterSet &)
 
 ~L1TriggerResultsConverter () override
 
- Public Member Functions inherited from edm::stream::EDProducer<>
 EDProducer ()=default
 
bool hasAbilityToProduceInLumis () const final
 
bool hasAbilityToProduceInRuns () 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 produce (edm::Event &, const edm::EventSetup &) override
 

Private Attributes

std::vector< unsigned int > indices_
 
const bool legacyL1_
 
const unsigned int m_triggerRulePrefireVetoBit =255
 
std::vector< unsigned int > mask_
 
std::vector< std::string > names_
 
const bool store_unprefireable_bit_
 
const edm::EDGetTokenT< GlobalAlgBlkBxCollectiontoken_
 
const edm::EDGetTokenT< GlobalExtBlkBxCollectiontoken_ext_
 
const edm::EDGetTokenT< L1GlobalTriggerReadoutRecordtokenLegacy_
 

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: [one line class summary]

Implementation: [Notes on implementation]

Definition at line 51 of file L1TriggerResultsConverter.cc.

Constructor & Destructor Documentation

L1TriggerResultsConverter::L1TriggerResultsConverter ( const edm::ParameterSet params)
explicit

Definition at line 80 of file L1TriggerResultsConverter.cc.

80  :
81  legacyL1_( params.getParameter<bool>("legacyL1") ),
82  store_unprefireable_bit_(!legacyL1_?params.getParameter<bool>("storeUnprefireableBit"):false),
83  tokenLegacy_(legacyL1_?consumes<L1GlobalTriggerReadoutRecord>( params.getParameter<edm::InputTag>("src") ): edm::EDGetTokenT<L1GlobalTriggerReadoutRecord>()),
84  token_(!legacyL1_?consumes<GlobalAlgBlkBxCollection>( params.getParameter<edm::InputTag>("src") ): edm::EDGetTokenT<GlobalAlgBlkBxCollection>()),
85  token_ext_(store_unprefireable_bit_?consumes<GlobalExtBlkBxCollection> (params.getParameter<edm::InputTag>("src_ext") ): edm::EDGetTokenT<GlobalExtBlkBxCollection>())
86 {
87  produces<edm::TriggerResults>();
88 }
T getParameter(std::string const &) const
const edm::EDGetTokenT< GlobalAlgBlkBxCollection > token_
const edm::EDGetTokenT< GlobalExtBlkBxCollection > token_ext_
const edm::EDGetTokenT< L1GlobalTriggerReadoutRecord > tokenLegacy_
L1TriggerResultsConverter::~L1TriggerResultsConverter ( )
override

Definition at line 91 of file L1TriggerResultsConverter.cc.

92 {
93 
94  // do anything here that needs to be done at destruction time
95  // (e.g. close files, deallocate resources etc.)
96 
97 }

Member Function Documentation

void L1TriggerResultsConverter::beginRun ( edm::Run const &  ,
edm::EventSetup const &  setup 
)
overrideprivate

Definition at line 104 of file L1TriggerResultsConverter.cc.

References edm::EventSetup::get(), L1TUtmTriggerMenu::getAlgorithmMap(), L1GtTriggerMenu::gtAlgorithmAliasMap(), L1GtTriggerMask::gtTriggerMask(), indices_, legacyL1_, taus_updatedMVAIds_cff::mapping, mask_, names_, and store_unprefireable_bit_.

104  {
105  mask_.clear();
106  names_.clear();
107  indices_.clear();
108  if(legacyL1_){
110  edm::ESHandle<L1GtTriggerMask> handleAlgoMask;
111  setup.get<L1GtTriggerMenuRcd>().get(handleMenu);
112  auto const & mapping = handleMenu->gtAlgorithmAliasMap();
113  for (auto const & keyval: mapping) {
114  names_.push_back(keyval.first);
115  indices_.push_back(keyval.second.algoBitNumber());
116  }
117  setup.get<L1GtTriggerMaskAlgoTrigRcd>().get(handleAlgoMask);
118  mask_ = handleAlgoMask->gtTriggerMask();
119  } else {
121  setup.get<L1TUtmTriggerMenuRcd>().get(menu);
122  auto const & mapping = menu->getAlgorithmMap();
123  for (auto const & keyval: mapping) {
124  names_.push_back(keyval.first);
125  indices_.push_back(keyval.second.getIndex());
126  }
127  if (store_unprefireable_bit_) names_.push_back("L1_UnprefireableEvent");
128  }
129 
130 }
std::vector< unsigned int > indices_
std::vector< std::string > names_
def setup(process, global_tag, zero_tesla=False)
Definition: GeneralSetup.py:2
const std::vector< unsigned int > & gtTriggerMask() const
get the trigger mask
std::vector< unsigned int > mask_
const std::map< std::string, L1TUtmAlgorithm > & getAlgorithmMap() const
const AlgorithmMap & gtAlgorithmAliasMap() const
get / set the algorithm map (by alias)
void L1TriggerResultsConverter::fillDescriptions ( edm::ConfigurationDescriptions descriptions)
static

Definition at line 174 of file L1TriggerResultsConverter.cc.

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

174  {
176  desc.add<bool>("legacyL1")->setComment("is legacy L1");
177  desc.add<edm::InputTag>("src")->setComment("L1 input (L1GlobalTriggerReadoutRecord if legacy, GlobalAlgBlkBxCollection otherwise)");
178  desc.add<bool>("storeUnprefireableBit",false)->setComment("Activate storage of L1 unprefireable bit (needs L1 external decision input)");
179  desc.add<edm::InputTag>("src_ext",edm::InputTag(""))->setComment("L1 external decision input (GlobalExtBlkBxCollection, only supported if not legacy");
180  descriptions.add("L1TriggerResultsConverter",desc);
181 }
ParameterDescriptionBase * add(U const &iLabel, T const &value)
void add(std::string const &label, ParameterSetDescription const &psetDescription)
void L1TriggerResultsConverter::produce ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
overrideprivate

Definition at line 136 of file L1TriggerResultsConverter.cc.

References BXVector< T >::at(), L1GlobalTriggerReadoutRecord::decisionWord(), edm::hlt::Fail, edm::Event::getByToken(), indices_, legacyL1_, m_triggerRulePrefireVetoBit, mask_, SiStripPI::max, GlobalExtBlk::maxExternalConditions, eostools::move(), names_, MillePedeFileConverter_cfg::out, edm::hlt::Pass, edm::Event::put(), mps_fire::result, store_unprefireable_bit_, token_, token_ext_, and tokenLegacy_.

137 {
138  using namespace edm;
139  const std::vector<bool> * wordp=nullptr;
140  bool unprefireable_bit = false;
141  if (!legacyL1_){
143  iEvent.getByToken(token_, handleResults);
144  wordp= & handleResults->at(0,0).getAlgoDecisionFinal() ;
146  edm::Handle<GlobalExtBlkBxCollection> handleExtResults;
147  iEvent.getByToken(token_ext_, handleExtResults);
148  unprefireable_bit = handleExtResults->at(0,0).getExternalDecision(std::max(m_triggerRulePrefireVetoBit,GlobalExtBlk::maxExternalConditions-1));
149  }
150  } else {
151 // Legacy access
153  iEvent.getByToken(tokenLegacy_, handleResults);
154  wordp = & handleResults->decisionWord();
155  }
156  auto const &word = *wordp;
157  HLTGlobalStatus l1bitsAsHLTStatus(names_.size());
158  unsigned indices_size = indices_.size();
159  for(size_t nidx=0;nidx<indices_size; nidx++) {
160  unsigned int index = indices_[nidx];
161  bool result =word[index];
162  if(!mask_.empty()) result &= (mask_[index] !=0);
163  l1bitsAsHLTStatus[nidx]=HLTPathStatus(result?edm::hlt::Pass:edm::hlt::Fail);
164  }
165  if (store_unprefireable_bit_) l1bitsAsHLTStatus[indices_size]=HLTPathStatus(unprefireable_bit?edm::hlt::Pass:edm::hlt::Fail);
166  //mimic HLT trigger bits for L1
167  auto out = std::make_unique<edm::TriggerResults>(l1bitsAsHLTStatus,names_);
168  iEvent.put(std::move(out));
169 
170 }
std::vector< unsigned int > indices_
std::vector< std::string > names_
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:125
static const unsigned int maxExternalConditions
Definition: GlobalExtBlk.h:47
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:517
reject
Definition: HLTenums.h:20
accept
Definition: HLTenums.h:19
const edm::EDGetTokenT< GlobalAlgBlkBxCollection > token_
const edm::EDGetTokenT< GlobalExtBlkBxCollection > token_ext_
const DecisionWord & decisionWord(int bxInEventValue) const
const edm::EDGetTokenT< L1GlobalTriggerReadoutRecord > tokenLegacy_
std::vector< unsigned int > mask_
HLT enums.
def move(src, dest)
Definition: eostools.py:511
const unsigned int m_triggerRulePrefireVetoBit
const T & at(int bx, unsigned i) const

Member Data Documentation

std::vector<unsigned int> L1TriggerResultsConverter::indices_
private

Definition at line 70 of file L1TriggerResultsConverter.cc.

Referenced by beginRun(), and produce().

const bool L1TriggerResultsConverter::legacyL1_
private

Definition at line 63 of file L1TriggerResultsConverter.cc.

Referenced by beginRun(), and produce().

const unsigned int L1TriggerResultsConverter::m_triggerRulePrefireVetoBit =255
private

Definition at line 72 of file L1TriggerResultsConverter.cc.

Referenced by produce().

std::vector<unsigned int> L1TriggerResultsConverter::mask_
private

Definition at line 69 of file L1TriggerResultsConverter.cc.

Referenced by beginRun(), and produce().

std::vector<std::string> L1TriggerResultsConverter::names_
private

Definition at line 68 of file L1TriggerResultsConverter.cc.

Referenced by beginRun(), and produce().

const bool L1TriggerResultsConverter::store_unprefireable_bit_
private

Definition at line 64 of file L1TriggerResultsConverter.cc.

Referenced by beginRun(), and produce().

const edm::EDGetTokenT<GlobalAlgBlkBxCollection> L1TriggerResultsConverter::token_
private

Definition at line 66 of file L1TriggerResultsConverter.cc.

Referenced by produce().

const edm::EDGetTokenT<GlobalExtBlkBxCollection> L1TriggerResultsConverter::token_ext_
private

Definition at line 67 of file L1TriggerResultsConverter.cc.

Referenced by produce().

const edm::EDGetTokenT<L1GlobalTriggerReadoutRecord> L1TriggerResultsConverter::tokenLegacy_
private

Definition at line 65 of file L1TriggerResultsConverter.cc.

Referenced by produce().