CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
PrescaleWeightProvider.cc
Go to the documentation of this file.
1 //
2 // See header file for description
3 // $Id: PrescaleWeightProvider.cc,v 1.2 2010/08/25 16:20:29 vadler Exp $
4 //
5 
6 
8 
9 #include <sstream>
10 
13 
15 
16 
18 // default values
19 : verbosity_( 0 )
20 , triggerResults_( "TriggerResults::HLT" )
21 , l1GtTriggerMenuLite_( "l1GtTriggerMenuLite" )
22 {
23 
24  hltPaths_.clear();
25  if ( config.exists( "prescaleWeightVerbosityLevel" ) ) verbosity_ = config.getParameter< unsigned >( "prescaleWeightVerbosityLevel" );
26  if ( config.exists( "prescaleWeightTriggerResults" ) ) triggerResults_ = config.getParameter< edm::InputTag >( "prescaleWeightTriggerResults" );
27  if ( config.exists( "prescaleWeightL1GtTriggerMenuLite" ) ) l1GtTriggerMenuLite_ = config.getParameter< edm::InputTag >( "prescaleWeightL1GtTriggerMenuLite" );
28  if ( config.exists( "prescaleWeightHltPaths" ) ) hltPaths_ = config.getParameter< std::vector< std::string > >( "prescaleWeightHltPaths" );
29 
30  configured_ = true;
31  if ( triggerResults_.process().empty() ) {
32  configured_ = false;
33  if ( verbosity_ > 0 ) edm::LogWarning( "PrescaleWeightProvider" ) << "Process name not configured via TriggerResults InputTag";
34  } else if ( triggerResults_.label().empty() ) {
35  configured_ = false;
36  if ( verbosity_ > 0 ) edm::LogWarning( "PrescaleWeightProvider" ) << "TriggerResults label not configured";
37  } else if ( l1GtTriggerMenuLite_.label().empty() ) {
38  configured_ = false;
39  if ( verbosity_ > 0 ) edm::LogWarning( "PrescaleWeightProvider" ) << "L1GtTriggerMenuLite label not configured";
40  } else if ( hltPaths_.empty() ) {
41  configured_ = false;
42  if ( verbosity_ > 0 ) edm::LogError( "PrescaleWeightProvider" ) << "HLT paths of interest not configured";
43  }
44 
45 }
46 
48 {
49 
50  init_ = true;
51 
52  if ( ! configured_ ) {
53  init_ = false;
54  if ( verbosity_ > 0 ) edm::LogWarning( "PrescaleWeightProvider" ) << "Run initialisation failed due to failing configuration";
55  return;
56  }
57 
58  bool hltChanged( false );
59  if ( ! hltConfig_.init( run, setup, triggerResults_.process(), hltChanged ) ) {
60  if ( verbosity_ > 0 ) edm::LogError( "PrescaleWeightProvider" ) << "HLT config initialization error with process name \"" << triggerResults_.process() << "\"";
61  init_ = false;
62  } else if ( hltConfig_.size() <= 0 ) {
63  if ( verbosity_ > 0 ) edm::LogError( "PrescaleWeightProvider" ) << "HLT config size error";
64  init_ = false;
65  } else if ( hltChanged ) {
66  if ( verbosity_ > 0 ) edm::LogInfo( "PrescaleWeightProvider" ) << "HLT configuration changed";
67  }
68  if ( ! init_ ) return;
69 
71  if ( ! triggerMenuLite_.isValid() ) {
72  if ( verbosity_ > 0 ) edm::LogError( "PrescaleWeightProvider" ) << "L1GtTriggerMenuLite with label \"" << l1GtTriggerMenuLite_.label() << "\" not found";
73  init_ = false;
74  }
75 
76 }
77 
78 
80 {
81  if ( ! init_ ) return 1;
82 
83  // L1
84  L1GtUtils l1GtUtils;
85  l1GtUtils.retrieveL1EventSetup( setup );
86 
87  // HLT
89  event.getByLabel( triggerResults_, triggerResults);
90  if( ! triggerResults.isValid() ) {
91  if ( verbosity_ > 0 ) edm::LogError("PrescaleWeightProvider::prescaleWeight") << "TriggerResults product not found for InputTag \"" << triggerResults_.encode() << "\"";
92  return 1;
93  }
94 
95  const int SENTINEL( -1 );
96  int weight( SENTINEL );
97 
98  for ( unsigned ui = 0; ui < hltPaths_.size(); ui++ ) {
99  const std::string hltPath( hltPaths_.at( ui ) );
100  unsigned hltIndex( hltConfig_.triggerIndex( hltPath ) );
101  if ( hltIndex == hltConfig_.size() ) {
102  if ( verbosity_ > 0 ) edm::LogError( "PrescaleWeightProvider::prescaleWeight" ) << "HLT path \"" << hltPath << "\" does not exist";
103  continue;
104  }
105  if ( ! triggerResults->accept( hltIndex ) ) continue;
106 
107  const std::vector< std::pair < bool, std::string > > level1Seeds = hltConfig_.hltL1GTSeeds( hltPath );
108  if ( level1Seeds.size() != 1 ) {
109  if ( verbosity_ > 0 ) edm::LogError( "PrescaleWeightProvider::prescaleWeight" ) << "HLT path \"" << hltPath << "\" provides too many L1 seeds";
110  return 1;
111  }
112  parseL1Seeds( level1Seeds.at( 0 ).second );
113  if ( l1SeedPaths_.empty() ){
114  if ( verbosity_ > 0 ) edm::LogWarning("PrescaleWeightProvider::prescaleWeight") << "Failed to parse L1 seeds for HLT path \"" << hltPath << "\"";
115  continue;
116  }
117 
118  int l1Prescale( SENTINEL );
119  for ( unsigned uj = 0; uj < l1SeedPaths_.size(); uj++ ) {
120  int l1TempPrescale( SENTINEL );
121  int errorCode( 0 );
122  if ( level1Seeds.at( 0 ).first ) { // technical triggers
123  unsigned techBit( atoi( l1SeedPaths_.at( uj ).c_str() ) );
124  const std::string techName( *( triggerMenuLite_->gtTechTrigName( techBit, errorCode ) ) );
125  if ( errorCode != 0 ) continue;
126  if ( ! l1GtUtils.decision( event, techName, errorCode ) ) continue;
127  if ( errorCode != 0 ) continue;
128  l1TempPrescale = l1GtUtils.prescaleFactor( event, techName, errorCode );
129  if ( errorCode != 0 ) continue;
130  }
131  else { // algorithmic triggers
132  if ( ! l1GtUtils.decision( event, l1SeedPaths_.at( uj ), errorCode ) ) continue;
133  if ( errorCode != 0 ) continue;
134  l1TempPrescale = l1GtUtils.prescaleFactor( event, l1SeedPaths_.at( uj ), errorCode );
135  if ( errorCode != 0 ) continue;
136  }
137  if ( l1TempPrescale > 0 ){
138  if ( l1Prescale == SENTINEL || l1Prescale > l1TempPrescale ) l1Prescale = l1TempPrescale;
139  }
140  }
141  if ( l1Prescale == SENTINEL ){
142  if ( verbosity_ > 0 ) edm::LogError( "PrescaleWeightProvider::prescaleWeight" ) << "Unable to find the L1 prescale for HLT path \"" << hltPath << "\"";
143  continue;
144  }
145 
146  int hltPrescale( hltConfig_.prescaleValue( event, setup, hltPath ) );
147 
148  if ( hltPrescale * l1Prescale > 0 ) {
149  if ( weight == SENTINEL || weight > hltPrescale * l1Prescale ) {
150  weight = hltPrescale * l1Prescale;
151  }
152  }
153  }
154 
155  if ( weight == SENTINEL ){
156  if ( verbosity_ > 0 ) edm::LogWarning( "PrescaleWeightProvider::prescaleWeight" ) << "No valid weight for any requested HLT path, returning default weight of 1";
157  return 1;
158  }
159  return weight;
160 
161 }
162 
163 
164 void PrescaleWeightProvider::parseL1Seeds( const std::string & l1Seeds )
165 {
166  l1SeedPaths_.clear();
167  std::stringstream ss( l1Seeds );
168  std::string buf;
169 
170  while ( ss.good() && ! ss.eof() ){
171  ss >> buf;
172  if ( buf[0] == '(' || buf[ buf.size() - 1 ] == ')' || buf == "AND" || buf == "NOT" ){
173  l1SeedPaths_.clear();
174  if ( verbosity_ > 0 ) edm::LogWarning( "PrescaleWeightProvider::parseL1Seeds" ) << "Only supported logical expression is OR";
175  return;
176  }
177  else if (buf == "OR") continue;
178  else l1SeedPaths_.push_back( buf );
179  }
180 
181 }
unsigned int size() const
number of trigger paths in trigger table
T getParameter(std::string const &) const
bool getByLabel(std::string const &label, Handle< PROD > &result) const
Definition: Run.h:177
int prescaleWeight(const edm::Event &event, const edm::EventSetup &setup)
edm::Handle< L1GtTriggerMenuLite > triggerMenuLite_
std::vector< std::string > l1SeedPaths_
const std::vector< std::vector< std::pair< bool, std::string > > > & hltL1GTSeeds() const
bool exists(std::string const &parameterName) const
checks if a parameter exists
std::string encode() const
Definition: InputTag.cc:72
unsigned int triggerIndex(const std::string &triggerName) const
slot position of trigger path in trigger table (0 to size-1)
std::vector< std::string > hltPaths_
unsigned int prescaleValue(unsigned int set, const std::string &trigger) const
HLT prescale value in specific prescale set for a specific trigger path.
const bool decision(const edm::Event &iEvent, const edm::InputTag &l1GtRecordInputTag, const edm::InputTag &l1GtReadoutRecordInputTag, const std::string &nameAlgoTechTrig, int &errorCode) const
Definition: L1GtUtils.cc:1450
void initRun(const edm::Run &run, const edm::EventSetup &setup)
void retrieveL1EventSetup(const edm::EventSetup &)
retrieve all the relevant L1 trigger event setup records and cache them to improve the speed ...
Definition: L1GtUtils.cc:113
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger but the state exists so we define the behavior If all triggers are the negative crieriion will lead to accepting the event(this again matches the behavior of"!*"before the partial wildcard feature was incorporated).The per-event"cost"of each negative criterion with multiple relevant triggers is about the same as!*was in the past
bool isValid() const
Definition: HandleBase.h:76
bool init(const edm::Run &iRun, const edm::EventSetup &iSetup, const std::string &processName, bool &changed)
d&#39;tor
std::string const & label() const
Definition: InputTag.h:25
std::string const & process() const
Definition: InputTag.h:29
PrescaleWeightProvider(const edm::ParameterSet &config)
const int prescaleFactor(const edm::Event &iEvent, const edm::InputTag &l1GtRecordInputTag, const edm::InputTag &l1GtReadoutRecordInputTag, const std::string &nameAlgoTechTrig, int &errorCode) const
return prescale factor for a given algorithm or technical trigger
Definition: L1GtUtils.cc:1487
void setup(std::vector< TH2F > &depth, std::string name, std::string units="")
void parseL1Seeds(const std::string &l1Seeds)
Definition: Run.h:33