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

Public Member Functions

 HLTInspect (const edm::ParameterSet &)
 
 ~HLTInspect ()
 
- Public Member Functions inherited from edm::EDAnalyzer
 EDAnalyzer ()
 
std::string workerType () const
 
virtual ~EDAnalyzer ()
 

Private Member Functions

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

Private Attributes

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

Additional Inherited Members

- Public Types inherited from edm::EDAnalyzer
typedef EDAnalyzer ModuleType
 
typedef WorkerT< EDAnalyzerWorkerType
 
- 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::EDAnalyzer
CurrentProcessingContext const * currentContext () const
 

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 
)
privatevirtual

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(), 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:243
bool isValid() const
Definition: HandleBase.h:76
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.