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 50 of file L1TriggerResultsConverter.cc.

Constructor & Destructor Documentation

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

Definition at line 77 of file L1TriggerResultsConverter.cc.

78  : legacyL1_(params.getParameter<bool>("legacyL1")),
79  store_unprefireable_bit_(!legacyL1_ ? params.getParameter<bool>("storeUnprefireableBit") : false),
80  tokenLegacy_(legacyL1_ ? consumes<L1GlobalTriggerReadoutRecord>(params.getParameter<edm::InputTag>("src"))
82  token_(!legacyL1_ ? consumes<GlobalAlgBlkBxCollection>(params.getParameter<edm::InputTag>("src"))
85  ? consumes<GlobalExtBlkBxCollection>(params.getParameter<edm::InputTag>("src_ext"))
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 90 of file L1TriggerResultsConverter.cc.

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

Member Function Documentation

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

Definition at line 99 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_.

99  {
100  mask_.clear();
101  names_.clear();
102  indices_.clear();
103  if (legacyL1_) {
105  edm::ESHandle<L1GtTriggerMask> handleAlgoMask;
106  setup.get<L1GtTriggerMenuRcd>().get(handleMenu);
107  auto const& mapping = handleMenu->gtAlgorithmAliasMap();
108  for (auto const& keyval : mapping) {
109  names_.push_back(keyval.first);
110  indices_.push_back(keyval.second.algoBitNumber());
111  }
112  setup.get<L1GtTriggerMaskAlgoTrigRcd>().get(handleAlgoMask);
113  mask_ = handleAlgoMask->gtTriggerMask();
114  } else {
116  setup.get<L1TUtmTriggerMenuRcd>().get(menu);
117  auto const& mapping = menu->getAlgorithmMap();
118  for (auto const& keyval : mapping) {
119  names_.push_back(keyval.first);
120  indices_.push_back(keyval.second.getIndex());
121  }
123  names_.push_back("L1_UnprefireableEvent");
124  }
125 }
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 169 of file L1TriggerResultsConverter.cc.

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

169  {
171  desc.add<bool>("legacyL1")->setComment("is legacy L1");
172  desc.add<edm::InputTag>("src")->setComment(
173  "L1 input (L1GlobalTriggerReadoutRecord if legacy, GlobalAlgBlkBxCollection otherwise)");
174  desc.add<bool>("storeUnprefireableBit", false)
175  ->setComment("Activate storage of L1 unprefireable bit (needs L1 external decision input)");
176  desc.add<edm::InputTag>("src_ext", edm::InputTag(""))
177  ->setComment("L1 external decision input (GlobalExtBlkBxCollection, only supported if not legacy");
178  descriptions.add("L1TriggerResultsConverter", desc);
179 }
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 129 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, BXVector< T >::size(), store_unprefireable_bit_, token_, token_ext_, and tokenLegacy_.

129  {
130  using namespace edm;
131  const std::vector<bool>* wordp = nullptr;
132  bool unprefireable_bit = false;
133  if (!legacyL1_) {
135  iEvent.getByToken(token_, handleResults);
136  wordp = &handleResults->at(0, 0).getAlgoDecisionFinal();
138  edm::Handle<GlobalExtBlkBxCollection> handleExtResults;
139  iEvent.getByToken(token_ext_, handleExtResults);
140  if (handleExtResults->size() != 0) {
141  unprefireable_bit = handleExtResults->at(0, 0).getExternalDecision(
143  }
144  }
145  } else {
146  // Legacy access
148  iEvent.getByToken(tokenLegacy_, handleResults);
149  wordp = &handleResults->decisionWord();
150  }
151  auto const& word = *wordp;
152  HLTGlobalStatus l1bitsAsHLTStatus(names_.size());
153  unsigned indices_size = indices_.size();
154  for (size_t nidx = 0; nidx < indices_size; nidx++) {
155  unsigned int index = indices_[nidx];
156  bool result = word[index];
157  if (!mask_.empty())
158  result &= (mask_[index] != 0);
159  l1bitsAsHLTStatus[nidx] = HLTPathStatus(result ? edm::hlt::Pass : edm::hlt::Fail);
160  }
162  l1bitsAsHLTStatus[indices_size] = HLTPathStatus(unprefireable_bit ? edm::hlt::Pass : edm::hlt::Fail);
163  //mimic HLT trigger bits for L1
164  auto out = std::make_unique<edm::TriggerResults>(l1bitsAsHLTStatus, names_);
165  iEvent.put(std::move(out));
166 }
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
unsigned size(int bx) const
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 69 of file L1TriggerResultsConverter.cc.

Referenced by beginRun(), and produce().

const bool L1TriggerResultsConverter::legacyL1_
private

Definition at line 62 of file L1TriggerResultsConverter.cc.

Referenced by beginRun(), and produce().

const unsigned int L1TriggerResultsConverter::m_triggerRulePrefireVetoBit = 255
private

Definition at line 71 of file L1TriggerResultsConverter.cc.

Referenced by produce().

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

Definition at line 68 of file L1TriggerResultsConverter.cc.

Referenced by beginRun(), and produce().

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

Definition at line 67 of file L1TriggerResultsConverter.cc.

Referenced by beginRun(), and produce().

const bool L1TriggerResultsConverter::store_unprefireable_bit_
private

Definition at line 63 of file L1TriggerResultsConverter.cc.

Referenced by beginRun(), and produce().

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

Definition at line 65 of file L1TriggerResultsConverter.cc.

Referenced by produce().

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

Definition at line 66 of file L1TriggerResultsConverter.cc.

Referenced by produce().

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

Definition at line 64 of file L1TriggerResultsConverter.cc.

Referenced by produce().