CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Member Functions | Private Attributes
pat::PATTriggerEventProducer Class Reference

Produces the central entry point to full PAT trigger information. More...

#include "PhysicsTools/PatAlgos/plugins/PATTriggerEventProducer.h"

Inheritance diagram for pat::PATTriggerEventProducer:
edm::EDProducer edm::ProducerBase edm::ProductRegistryHelper

Public Member Functions

 PATTriggerEventProducer (const edm::ParameterSet &iConfig)
 
 ~PATTriggerEventProducer ()
 
- Public Member Functions inherited from edm::EDProducer
 EDProducer ()
 
virtual ~EDProducer ()
 
- Public Member Functions inherited from edm::ProducerBase
 ProducerBase ()
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
boost::function< void(const
BranchDescription &)> 
registrationCallback () const
 used by the fwk to register list of products More...
 
virtual ~ProducerBase ()
 

Private Member Functions

virtual void beginLuminosityBlock (edm::LuminosityBlock &iLumi, const edm::EventSetup &iSetup)
 
virtual void beginRun (edm::Run &iRun, const edm::EventSetup &iSetup)
 
virtual void produce (edm::Event &iEvent, const edm::EventSetup &iSetup)
 

Private Attributes

bool autoProcessName_
 
edm::ConditionsInLumiBlock condLumi_
 
edm::ConditionsInRunBlock condRun_
 
bool gtCondLumiInit_
 
bool gtCondRunInit_
 
HLTConfigProvider hltConfig_
 
bool hltConfigInit_
 
std::string nameProcess_
 
edm::InputTag tagCondGt_
 
edm::InputTag tagL1Gt_
 
std::vector< edm::InputTagtagsTriggerMatcher_
 
edm::InputTag tagTriggerEvent_
 
edm::InputTag tagTriggerProducer_
 
edm::InputTag tagTriggerResults_
 

Additional Inherited Members

- Public Types inherited from edm::EDProducer
typedef EDProducer ModuleType
 
typedef WorkerT< EDProducerWorkerType
 
- Public Types inherited from edm::ProducerBase
typedef
ProductRegistryHelper::TypeLabelList 
TypeLabelList
 
- Static Public Member Functions inherited from edm::EDProducer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 
- Protected Member Functions inherited from edm::EDProducer
CurrentProcessingContext const * currentContext () const
 
- Protected Member Functions inherited from edm::ProducerBase
template<class TProducer , class TMethod >
void callWhenNewProductsRegistered (TProducer *iProd, TMethod iMethod)
 

Detailed Description

Produces the central entry point to full PAT trigger information.

This producer extract general trigger and conditions information from

For me information, s. https://twiki.cern.ch/twiki/bin/view/CMS/SWGuidePATTrigger

Author
Volker Adler
Version
Id:
PATTriggerEventProducer.h,v 1.11 2010/11/27 15:16:20 vadler Exp

Definition at line 47 of file PATTriggerEventProducer.h.

Constructor & Destructor Documentation

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

Definition at line 29 of file PATTriggerEventProducer.cc.

References edm::ParameterSet::exists(), edm::ParameterSet::getParameter(), tagCondGt_, tagL1Gt_, tagsTriggerMatcher_, tagTriggerEvent_, tagTriggerProducer_, and tagTriggerResults_.

29  :
30  nameProcess_( iConfig.getParameter< std::string >( "processName" ) ),
32  tagTriggerProducer_( "patTrigger" ),
34  // L1 configuration parameters
35  tagL1Gt_(),
36  // HLTConfigProvider
37  hltConfigInit_( false ),
38  // HLT configuration parameters
39  tagTriggerResults_( "TriggerResults" ),
40  tagTriggerEvent_( "hltTriggerSummaryAOD" ),
41  // Conditions configuration parameters
42  tagCondGt_(),
43  // Conditions
44  condRun_(),
45  condLumi_(),
46  gtCondRunInit_( false ),
47  gtCondLumiInit_( false )
48 {
49 
50  if ( iConfig.exists( "triggerResults" ) ) tagTriggerResults_ = iConfig.getParameter< InputTag >( "triggerResults" );
51  if ( iConfig.exists( "triggerEvent" ) ) tagTriggerEvent_ = iConfig.getParameter< InputTag >( "triggerEvent" );
52  if ( iConfig.exists( "patTriggerProducer" ) ) tagTriggerProducer_ = iConfig.getParameter< InputTag >( "patTriggerProducer" );
53  if ( iConfig.exists( "condGtTag" ) ) tagCondGt_ = iConfig.getParameter< InputTag >( "condGtTag" );
54  if ( iConfig.exists( "l1GtTag" ) ) tagL1Gt_ = iConfig.getParameter< InputTag >( "l1GtTag" );
55  if ( iConfig.exists( "patTriggerMatches" ) ) tagsTriggerMatcher_ = iConfig.getParameter< std::vector< InputTag > >( "patTriggerMatches" );
56 
57  for ( size_t iMatch = 0; iMatch < tagsTriggerMatcher_.size(); ++iMatch ) {
58  produces< TriggerObjectMatch >( tagsTriggerMatcher_.at( iMatch ).label() );
59  }
60  produces< TriggerEvent >();
61 
62 }
T getParameter(std::string const &) const
bool exists(std::string const &parameterName) const
checks if a parameter exists
std::vector< edm::InputTag > tagsTriggerMatcher_
edm::ConditionsInRunBlock condRun_
edm::ConditionsInLumiBlock condLumi_
pat::PATTriggerEventProducer::~PATTriggerEventProducer ( )
inline

Definition at line 52 of file PATTriggerEventProducer.h.

52 {};

Member Function Documentation

void PATTriggerEventProducer::beginLuminosityBlock ( edm::LuminosityBlock iLumi,
const edm::EventSetup iSetup 
)
privatevirtual

Reimplemented from edm::EDProducer.

Definition at line 129 of file PATTriggerEventProducer.cc.

References condLumi_, edm::InputTag::encode(), edm::LuminosityBlock::getByLabel(), gtCondLumiInit_, edm::HandleBase::isValid(), edm::InputTag::label(), nameProcess_, and tagCondGt_.

130 {
131 
132  // Terminate, if auto process name determination failed
133  if ( nameProcess_ == "*" ) return;
134 
135  gtCondLumiInit_ = false;
136  if ( ! tagCondGt_.label().empty() ) {
137  Handle< ConditionsInLumiBlock > condLumiBlock;
138  iLuminosityBlock.getByLabel( tagCondGt_, condLumiBlock );
139  if ( condLumiBlock.isValid() ) {
140  condLumi_ = *condLumiBlock;
141  gtCondLumiInit_ = true;
142  } else {
143  LogError( "conditionsInEdm" ) << "ConditionsInLumiBlock product with InputTag '" << tagCondGt_.encode() << "' not in lumi";
144  }
145  }
146 
147 }
std::string encode() const
Definition: InputTag.cc:72
bool isValid() const
Definition: HandleBase.h:76
std::string const & label() const
Definition: InputTag.h:25
edm::ConditionsInLumiBlock condLumi_
void PATTriggerEventProducer::beginRun ( edm::Run iRun,
const edm::EventSetup iSetup 
)
privatevirtual

Reimplemented from edm::EDProducer.

Definition at line 65 of file PATTriggerEventProducer.cc.

References autoProcessName_, condRun_, edm::InputTag::encode(), edm::ParameterSet::exists(), edm::Run::getByLabel(), gtCondRunInit_, hltConfig_, hltConfigInit_, HLTConfigProvider::init(), edm::InputTag::instance(), instance, edm::HandleBase::isValid(), edm::InputTag::label(), LogDebug, nameProcess_, edm::InputTag::process(), edm::Run::processHistory(), HLTConfigProvider::size(), tagCondGt_, tagTriggerEvent_, and tagTriggerResults_.

66 {
67 
68  // Initialize process name
69  if ( autoProcessName_ ) {
70  // reset
71  nameProcess_ = "*";
72  // determine process name from last run TriggerSummaryProducerAOD module in process history of input
73  const ProcessHistory & processHistory( iRun.processHistory() );
74  ProcessConfiguration processConfiguration;
75  ParameterSet processPSet;
76  // unbroken loop, which relies on time ordering (accepts the last found entry)
77  for ( ProcessHistory::const_iterator iHist = processHistory.begin(); iHist != processHistory.end(); ++iHist ) {
78  if ( processHistory.getConfigurationForProcess( iHist->processName(), processConfiguration ) &&
79  pset::Registry::instance()->getMapped( processConfiguration.parameterSetID(), processPSet ) &&
80  processPSet.exists( tagTriggerEvent_.label() )
81  ) {
82  nameProcess_ = iHist->processName();
83  LogDebug( "autoProcessName" ) << "HLT process name '" << nameProcess_ << "' discovered";
84  }
85  }
86  // terminate, if nothing is found
87  if ( nameProcess_ == "*" ) {
88  LogError( "autoProcessName" ) << "trigger::TriggerEvent product with label '" << tagTriggerEvent_.label() << "' not produced according to process history of input data\n"
89  << "No trigger information produced.";
90  return;
91  }
92  LogInfo( "autoProcessName" ) << "HLT process name " << nameProcess_ << " used for PAT trigger information";
93  }
94  // adapt configuration of used input tags
95  if ( tagTriggerResults_.process().empty() || tagTriggerResults_.process() == "*" ) {
97  } else if ( tagTriggerEvent_.process() != nameProcess_ ) {
98  LogWarning( "triggerResultsTag" ) << "TriggerResults process name '" << tagTriggerResults_.process() << "' differs from HLT process name '" << nameProcess_ << "'";
99  }
100  if ( tagTriggerEvent_.process().empty() || tagTriggerEvent_.process() == "*" ) {
102  } else if ( tagTriggerEvent_.process() != nameProcess_ ) {
103  LogWarning( "triggerEventTag" ) << "TriggerEvent process name '" << tagTriggerEvent_.process() << "' differs from HLT process name '" << nameProcess_ << "'";
104  }
105 
106  gtCondRunInit_ = false;
107  if ( ! tagCondGt_.label().empty() ) {
108  Handle< ConditionsInRunBlock > condRunBlock;
109  iRun.getByLabel( tagCondGt_, condRunBlock );
110  if ( condRunBlock.isValid() ) {
111  condRun_ = *condRunBlock;
112  gtCondRunInit_ = true;
113  } else {
114  LogError( "conditionsInEdm" ) << "ConditionsInRunBlock product with InputTag '" << tagCondGt_.encode() << "' not in run";
115  }
116  }
117 
118  // Initialize HLTConfigProvider
119  hltConfigInit_ = false;
120  bool changed( true );
121  if ( ! hltConfig_.init( iRun, iSetup, nameProcess_, changed ) ) {
122  LogError( "hltConfigExtraction" ) << "HLT config extraction error with process name '" << nameProcess_ << "'";
123  } else if ( hltConfig_.size() <= 0 ) {
124  LogError( "hltConfigSize" ) << "HLT config size error";
125  } else hltConfigInit_ = true;
126 
127 }
#define LogDebug(id)
unsigned int size() const
number of trigger paths in trigger table
collection_type::const_iterator const_iterator
bool getByLabel(std::string const &label, Handle< PROD > &result) const
Definition: Run.h:177
static PFTauRenderPlugin instance
bool exists(std::string const &parameterName) const
checks if a parameter exists
std::string encode() const
Definition: InputTag.cc:72
ProcessHistory const & processHistory() const
Definition: Run.cc:99
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
edm::ConditionsInRunBlock condRun_
std::string const & label() const
Definition: InputTag.h:25
std::string const & process() const
Definition: InputTag.h:29
std::string const & instance() const
Definition: InputTag.h:26
void PATTriggerEventProducer::produce ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
privatevirtual

Implements edm::EDProducer.

Definition at line 150 of file PATTriggerEventProducer.cc.

References edm::ConditionsInRunBlock::BAvgCurrent, edm::ConditionsInRunBlock::beamMode, edm::ConditionsInRunBlock::beamMomentum, edm::ConditionsInRunBlock::BStartCurrent, edm::ConditionsInRunBlock::BStopCurrent, condLumi_, condRun_, edm::InputTag::encode(), edm::AssociativeIterator< KeyRefType, AssociativeCollection, ItemGetter >::end(), edm::helper::Filler< Map >::fill(), edm::EventSetup::get(), edm::Event::get(), edm::Event::getByLabel(), gtCondLumiInit_, gtCondRunInit_, hltConfig_, hltConfigInit_, errorMatrix2Lands::indices, edm::helper::Filler< Map >::insert(), edm::EventBase::isRealData(), edm::HandleBase::isValid(), edm::InputTag::label(), edm::ConditionsInRunBlock::lhcFillNumber, nameProcess_, L1GtFdlWord::physicsDeclared(), edm::Event::put(), HLTConfigProvider::tableName(), tagCondGt_, tagL1Gt_, tagsTriggerMatcher_, tagTriggerProducer_, tagTriggerResults_, edm::ConditionsInLumiBlock::totalIntensityBeam1, and edm::ConditionsInLumiBlock::totalIntensityBeam2.

151 {
152 
153  // Terminate, if auto process name determination failed
154  if ( nameProcess_ == "*" ) return;
155 
156  if ( ! hltConfigInit_ ) return;
157 
158  ESHandle< L1GtTriggerMenu > handleL1GtTriggerMenu;
159  iSetup.get< L1GtTriggerMenuRcd >().get( handleL1GtTriggerMenu );
160  Handle< TriggerResults > handleTriggerResults;
161  iEvent.getByLabel( tagTriggerResults_, handleTriggerResults );
162  if ( ! handleTriggerResults.isValid() ) {
163  LogError( "triggerResultsValid" ) << "TriggerResults product with InputTag '" << tagTriggerResults_.encode() << "' not in event\n"
164  << "No trigger information produced";
165  return;
166  }
167  Handle< TriggerAlgorithmCollection > handleTriggerAlgorithms;
168  iEvent.getByLabel( tagTriggerProducer_, handleTriggerAlgorithms );
169  Handle< TriggerConditionCollection > handleTriggerConditions;
170  iEvent.getByLabel( tagTriggerProducer_, handleTriggerConditions );
171  Handle< TriggerPathCollection > handleTriggerPaths;
172  iEvent.getByLabel( tagTriggerProducer_, handleTriggerPaths );
173  Handle< TriggerFilterCollection > handleTriggerFilters;
174  iEvent.getByLabel( tagTriggerProducer_, handleTriggerFilters );
175  Handle< TriggerObjectCollection > handleTriggerObjects;
176  iEvent.getByLabel( tagTriggerProducer_, handleTriggerObjects );
177 
178  bool physDecl( false );
179  if ( iEvent.isRealData() && ! tagL1Gt_.label().empty() ) {
180  Handle< L1GlobalTriggerReadoutRecord > handleL1GlobalTriggerReadoutRecord;
181  iEvent.getByLabel( tagL1Gt_, handleL1GlobalTriggerReadoutRecord );
182  if ( handleL1GlobalTriggerReadoutRecord.isValid() ) {
183  L1GtFdlWord fdlWord = handleL1GlobalTriggerReadoutRecord->gtFdlWord();
184  if ( fdlWord.physicsDeclared() == 1 ) {
185  physDecl = true;
186  }
187  } else {
188  LogError( "l1GlobalTriggerReadoutRecordValid" ) << "L1GlobalTriggerReadoutRecord product with InputTag '" << tagL1Gt_.encode() << "' not in event";
189  }
190  } else {
191  physDecl = true;
192  }
193 
194 
195  // produce trigger event
196 
197  std::auto_ptr< TriggerEvent > triggerEvent( new TriggerEvent( handleL1GtTriggerMenu->gtTriggerMenuName(), std::string( hltConfig_.tableName() ), handleTriggerResults->wasrun(), handleTriggerResults->accept(), handleTriggerResults->error(), physDecl ) );
198  // set product references to trigger collections
199  if ( handleTriggerAlgorithms.isValid() ) {
200  triggerEvent->setAlgorithms( handleTriggerAlgorithms );
201  } else {
202  LogError( "triggerAlgorithmsValid" ) << "pat::TriggerAlgorithmCollection product with InputTag '" << tagTriggerProducer_.encode() << "' not in event";
203  }
204  if ( handleTriggerConditions.isValid() ) {
205  triggerEvent->setConditions( handleTriggerConditions );
206  } else {
207  LogError( "triggerConditionsValid" ) << "pat::TriggerConditionCollection product with InputTag '" << tagTriggerProducer_.encode() << "' not in event";
208  }
209  if ( handleTriggerPaths.isValid() ) {
210  triggerEvent->setPaths( handleTriggerPaths );
211  } else {
212  LogError( "triggerPathsValid" ) << "pat::TriggerPathCollection product with InputTag '" << tagTriggerProducer_.encode() << "' not in event";
213  }
214  if ( handleTriggerFilters.isValid() ) {
215  triggerEvent->setFilters( handleTriggerFilters );
216  } else {
217  LogError( "triggerFiltersValid" ) << "pat::TriggerFilterCollection product with InputTag '" << tagTriggerProducer_.encode() << "' not in event";
218  }
219  if ( handleTriggerObjects.isValid() ) {
220  triggerEvent->setObjects( handleTriggerObjects );
221  } else {
222  LogError( "triggerObjectsValid" ) << "pat::TriggerObjectCollection product with InputTag '" << tagTriggerProducer_.encode() << "' not in event";
223  }
224  if ( gtCondRunInit_ ) {
225  triggerEvent->setLhcFill( condRun_.lhcFillNumber );
226  triggerEvent->setBeamMode( condRun_.beamMode );
227  triggerEvent->setBeamMomentum( condRun_.beamMomentum );
228  triggerEvent->setBCurrentStart( condRun_.BStartCurrent );
229  triggerEvent->setBCurrentStop( condRun_.BStopCurrent );
230  triggerEvent->setBCurrentAvg( condRun_.BAvgCurrent );
231  }
232  if ( gtCondLumiInit_ ) {
233  triggerEvent->setIntensityBeam1( condLumi_.totalIntensityBeam1 );
234  triggerEvent->setIntensityBeam2( condLumi_.totalIntensityBeam2 );
235  }
236  if ( ! tagCondGt_.label().empty() ) {
237  Handle< ConditionsInEventBlock > condEventBlock;
238  iEvent.getByLabel( tagCondGt_, condEventBlock );
239  if ( condEventBlock.isValid() ) {
240  triggerEvent->setBstMasterStatus( condEventBlock->bstMasterStatus );
241  triggerEvent->setTurnCount( condEventBlock->turnCountNumber );
242  } else {
243  LogError( "conditionsInEdm" ) << "ConditionsInEventBlock product with InputTag '" << tagCondGt_.encode() << "' not in event";
244  }
245  }
246 
247  // produce trigger match association and set references
248  if ( handleTriggerObjects.isValid() ) {
249  for ( size_t iMatch = 0; iMatch < tagsTriggerMatcher_.size(); ++iMatch ) {
250  const std::string labelTriggerObjectMatcher( tagsTriggerMatcher_.at( iMatch ).label() );
251  // copy trigger match association using TriggerObjectStandAlone to those using TriggerObject
252  // relying on the fact, that only one candidate collection is present in the association
253  Handle< TriggerObjectStandAloneMatch > handleTriggerObjectStandAloneMatch;
254  iEvent.getByLabel( labelTriggerObjectMatcher, handleTriggerObjectStandAloneMatch );
255  if ( ! handleTriggerObjectStandAloneMatch.isValid() ) {
256  LogError( "triggerMatchValid" ) << "pat::TriggerObjectStandAloneMatch product with InputTag '" << labelTriggerObjectMatcher << "' not in event";
257  continue;
258  }
259  AssociativeIterator< reco::CandidateBaseRef, TriggerObjectStandAloneMatch > it( *handleTriggerObjectStandAloneMatch, EdmEventItemGetter< reco::CandidateBaseRef >( iEvent ) ), itEnd( it.end() );
260  Handle< reco::CandidateView > handleCands;
261  if ( it != itEnd ) iEvent.get( it->first.id(), handleCands );
262  std::vector< int > indices;
263  while ( it != itEnd ) {
264  indices.push_back( it->second.key() );
265  ++it;
266  }
267  std::auto_ptr< TriggerObjectMatch > triggerObjectMatch( new TriggerObjectMatch( handleTriggerObjects ) );
268  TriggerObjectMatch::Filler matchFiller( *triggerObjectMatch );
269  if ( handleCands.isValid() ) {
270  matchFiller.insert( handleCands, indices.begin(), indices.end() );
271  }
272  matchFiller.fill();
273  OrphanHandle< TriggerObjectMatch > handleTriggerObjectMatch( iEvent.put( triggerObjectMatch, labelTriggerObjectMatcher ) );
274  // set product reference to trigger match association
275  if ( ! handleTriggerObjectMatch.isValid() ) {
276  LogError( "triggerMatchValid" ) << "pat::TriggerObjectMatch product with InputTag '" << labelTriggerObjectMatcher << "' not in event";
277  continue;
278  }
279  if ( ! ( triggerEvent->addObjectMatchResult( handleTriggerObjectMatch, labelTriggerObjectMatcher ) ) ) {
280  LogWarning( "triggerObjectMatchReplication" ) << "pat::TriggerEvent contains already a pat::TriggerObjectMatch from matcher module '" << labelTriggerObjectMatcher << "'";
281  }
282  }
283  }
284 
285  iEvent.put( triggerEvent );
286 
287 }
edm::Association< TriggerObjectCollection > TriggerObjectMatch
Association of TriggerObjects to store matches to Candidates.
boost::uint32_t lhcFillNumber
boost::uint32_t totalIntensityBeam1
const std::string & tableName() const
HLT ConfDB table name.
bool isRealData() const
Definition: EventBase.h:60
std::string encode() const
Definition: InputTag.cc:72
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:85
boost::uint32_t totalIntensityBeam2
Helper class that fetches some type of Ref given ProductID and index, using the edm::Event.
bool get(ProductID const &oid, Handle< PROD > &result) const
Definition: Event.h:267
bool isValid() const
Definition: HandleBase.h:76
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:356
std::vector< edm::InputTag > tagsTriggerMatcher_
Analysis-level trigger event class.
Definition: TriggerEvent.h:44
const T & get() const
Definition: EventSetup.h:55
const cms_uint16_t physicsDeclared() const
get/set &quot;physics declared&quot; bit
Definition: L1GtFdlWord.h:229
edm::ConditionsInRunBlock condRun_
std::string const & label() const
Definition: InputTag.h:25
edm::ConditionsInLumiBlock condLumi_
boost::uint16_t beamMomentum

Member Data Documentation

bool pat::PATTriggerEventProducer::autoProcessName_
private

Definition at line 61 of file PATTriggerEventProducer.h.

Referenced by beginRun().

edm::ConditionsInLumiBlock pat::PATTriggerEventProducer::condLumi_
private

Definition at line 74 of file PATTriggerEventProducer.h.

Referenced by beginLuminosityBlock(), and produce().

edm::ConditionsInRunBlock pat::PATTriggerEventProducer::condRun_
private

Definition at line 73 of file PATTriggerEventProducer.h.

Referenced by beginRun(), and produce().

bool pat::PATTriggerEventProducer::gtCondLumiInit_
private

Definition at line 76 of file PATTriggerEventProducer.h.

Referenced by beginLuminosityBlock(), and produce().

bool pat::PATTriggerEventProducer::gtCondRunInit_
private

Definition at line 75 of file PATTriggerEventProducer.h.

Referenced by beginRun(), and produce().

HLTConfigProvider pat::PATTriggerEventProducer::hltConfig_
private

Definition at line 67 of file PATTriggerEventProducer.h.

Referenced by beginRun(), and produce().

bool pat::PATTriggerEventProducer::hltConfigInit_
private

Definition at line 68 of file PATTriggerEventProducer.h.

Referenced by beginRun(), and produce().

std::string pat::PATTriggerEventProducer::nameProcess_
private

Definition at line 60 of file PATTriggerEventProducer.h.

Referenced by beginLuminosityBlock(), beginRun(), and produce().

edm::InputTag pat::PATTriggerEventProducer::tagCondGt_
private
edm::InputTag pat::PATTriggerEventProducer::tagL1Gt_
private

Definition at line 65 of file PATTriggerEventProducer.h.

Referenced by PATTriggerEventProducer(), and produce().

std::vector< edm::InputTag > pat::PATTriggerEventProducer::tagsTriggerMatcher_
private

Definition at line 63 of file PATTriggerEventProducer.h.

Referenced by PATTriggerEventProducer(), and produce().

edm::InputTag pat::PATTriggerEventProducer::tagTriggerEvent_
private

Definition at line 70 of file PATTriggerEventProducer.h.

Referenced by beginRun(), and PATTriggerEventProducer().

edm::InputTag pat::PATTriggerEventProducer::tagTriggerProducer_
private

Definition at line 62 of file PATTriggerEventProducer.h.

Referenced by PATTriggerEventProducer(), and produce().

edm::InputTag pat::PATTriggerEventProducer::tagTriggerResults_
private

Definition at line 69 of file PATTriggerEventProducer.h.

Referenced by beginRun(), PATTriggerEventProducer(), and produce().