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
HLTInspect Class Reference

#include <HLTInspect.h>

Inheritance diagram for HLTInspect:
edm::EDAnalyzer edm::EDConsumerBase

Public Member Functions

 HLTInspect (const edm::ParameterSet &)
 
 ~HLTInspect ()
 
- Public Member Functions inherited from edm::EDAnalyzer
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 EDAnalyzer ()
 
ModuleDescription const & moduleDescription () const
 
std::string workerType () const
 
virtual ~EDAnalyzer ()
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
 EDConsumerBase ()
 
ProductHolderIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
std::vector
< ProductHolderIndexAndSkipBit >
const & 
itemsToGetFromEvent () const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesDependentUpon (const std::string &iProcessName, std::vector< const char * > &oModuleLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
bool registeredToConsume (ProductHolderIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Private Member Functions

virtual void analyze (const edm::Event &e, const edm::EventSetup &c) override
 

Private Attributes

std::vector< std::string > hlNames_
 
edm::InputTag hlTriggerResults_
 
bool init_
 

Additional Inherited Members

- Public Types inherited from edm::EDAnalyzer
typedef EDAnalyzer ModuleType
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- Static Public Member Functions inherited from edm::EDAnalyzer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &)
 
- Protected Member Functions inherited from edm::EDConsumerBase
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (edm::InputTag const &tag)
 
EDGetToken consumes (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken consumes (TypeToGet const &id, edm::InputTag const &tag)
 
ConsumesCollector consumesCollector ()
 Use a ConsumesCollector to gather consumes information from helper functions. More...
 
template<typename ProductType , BranchType B = InEvent>
void consumesMany ()
 
void consumesMany (const TypeToGet &id)
 
template<BranchType B>
void consumesMany (const TypeToGet &id)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 

Detailed Description

Definition at line 33 of file HLTInspect.h.

Constructor & Destructor Documentation

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

Definition at line 33 of file HLTInspect.cc.

References edm::ParameterSet::getParameter().

34 {
35  hlTriggerResults_ = iConfig.getParameter<edm::InputTag> ("HLTriggerResults");
36  init_ = false;
37 }
T getParameter(std::string const &) const
edm::InputTag hlTriggerResults_
Definition: HLTInspect.h:41
bool init_
Definition: HLTInspect.h:42
HLTInspect::~HLTInspect ( )

Definition at line 39 of file HLTInspect.cc.

40 {
41 }

Member Function Documentation

void HLTInspect::analyze ( const edm::Event e,
const edm::EventSetup c 
)
overrideprivatevirtual

Implements edm::EDAnalyzer.

Definition at line 42 of file HLTInspect.cc.

References edm::EventBase::bunchCrossing(), gather_cfg::cout, edm::EventID::event(), edm::EventBase::experimentType(), edm::Event::getByLabel(), i, edm::EventBase::id(), edm::EventBase::isRealData(), edm::HandleBase::isValid(), edm::EventBase::luminosityBlock(), gen::n, edm::EventID::run(), edm::TriggerNames::triggerNames(), and edm::Event::triggerNames().

43 {
44 
45 
46  int ievt = iEvent.id().event();
47  int irun = iEvent.id().run();
48  int ils = iEvent.luminosityBlock();
49  int bx = iEvent.bunchCrossing();
50 //
51 // trigger type
52 //
53  int trigger_type=-1;
54  if (iEvent.isRealData()) trigger_type = iEvent.experimentType();
55 
56 
57  //hlt info
59  iEvent.getByLabel(hlTriggerResults_,HLTR);
60 
61 
62  if(HLTR.isValid() == false) {
63  std::cout<< " HLTInspect Error - Could not access Results with name "<<hlTriggerResults_<<std::endl;
64  }
65  if(HLTR.isValid())
66  {
67  if (!init_) {
68  init_=true;
69  const edm::TriggerNames & triggerNames = iEvent.triggerNames(*HLTR);
70  hlNames_=triggerNames.triggerNames();
71  }
72  std::cout << "HLTInspect: Run " << irun << " Ev " << ievt << " LB " << ils << " BX " << bx << " Type "<<trigger_type<< " Acc: " ;
73  const unsigned int n(hlNames_.size());
74  for (unsigned int i=0; i!=n; ++i)
75  {
76  if (HLTR->accept(i))
77  {
78  std::cout << hlNames_[i] << ",";
79  }
80  }
81  std::cout << std::endl;
82  }
83 
84 
85 }
int i
Definition: DBlmapReader.cc:9
std::vector< std::string > hlNames_
Definition: HLTInspect.h:40
Strings const & triggerNames() const
Definition: TriggerNames.cc:24
int iEvent
Definition: GenABIO.cc:230
bool isValid() const
Definition: HandleBase.h:75
edm::InputTag hlTriggerResults_
Definition: HLTInspect.h:41
bool init_
Definition: HLTInspect.h:42
tuple cout
Definition: gather_cfg.py:121

Member Data Documentation

std::vector<std::string> HLTInspect::hlNames_
private

Definition at line 40 of file HLTInspect.h.

edm::InputTag HLTInspect::hlTriggerResults_
private

Definition at line 41 of file HLTInspect.h.

bool HLTInspect::init_
private

Definition at line 42 of file HLTInspect.h.