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 Attributes
DTKeyedConfigPopConAnalyzer Class Reference
Inheritance diagram for DTKeyedConfigPopConAnalyzer:
popcon::PopConAnalyzer< DTKeyedConfigHandler > edm::EDAnalyzer

Public Member Functions

virtual void analyze (const edm::Event &e, const edm::EventSetup &s)
 
 DTKeyedConfigPopConAnalyzer (const edm::ParameterSet &pset)
 
virtual ~DTKeyedConfigPopConAnalyzer ()
 
- Public Member Functions inherited from popcon::PopConAnalyzer< DTKeyedConfigHandler >
 PopConAnalyzer (const edm::ParameterSet &pset)
 
virtual ~PopConAnalyzer ()
 
- Public Member Functions inherited from edm::EDAnalyzer
 EDAnalyzer ()
 
std::string workerType () const
 
virtual ~EDAnalyzer ()
 

Private Attributes

bool copyData
 

Additional Inherited Members

- Public Types inherited from popcon::PopConAnalyzer< DTKeyedConfigHandler >
typedef DTKeyedConfigHandler SourceHandler
 
- 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)
 
- Protected Member Functions inherited from edm::EDAnalyzer
CurrentProcessingContext const * currentContext () const
 

Detailed Description

Definition at line 11 of file DTKeyedConfigPopConAnalyzer.cc.

Constructor & Destructor Documentation

DTKeyedConfigPopConAnalyzer::DTKeyedConfigPopConAnalyzer ( const edm::ParameterSet pset)
inline

Definition at line 13 of file DTKeyedConfigPopConAnalyzer.cc.

13  :
15  copyData( pset.getParameter<edm::ParameterSet>("Source").
16  getUntrackedParameter<bool> ( "copyData", true ) )
17  {}
T getParameter(std::string const &) const
tuple pset
Definition: CrabTask.py:85
virtual DTKeyedConfigPopConAnalyzer::~DTKeyedConfigPopConAnalyzer ( )
inlinevirtual

Definition at line 18 of file DTKeyedConfigPopConAnalyzer.cc.

18 {}

Member Function Documentation

virtual void DTKeyedConfigPopConAnalyzer::analyze ( const edm::Event e,
const edm::EventSetup s 
)
inlinevirtual

Reimplemented from popcon::PopConAnalyzer< DTKeyedConfigHandler >.

Definition at line 19 of file DTKeyedConfigPopConAnalyzer.cc.

References copyData, gather_cfg::cout, cond::KeyList::elem(), cond::KeyList::get(), edm::EventSetup::get(), DTKeyedConfig::getId(), i, list(), edm::ESHandle< class >::product(), DTKeyedConfigHandler::setList(), and cond::KeyList::size().

19  {
20 
21  if ( !copyData ) return;
22 
24  std::cout<<"got eshandle"<<std::endl;
25  s.get<DTKeyedConfigListRcd>().get(klh);
26  std::cout<<"got context"<<std::endl;
27  cond::KeyList const & kl= *klh.product();
28  cond::KeyList* list = const_cast<cond::KeyList*>( &kl );
29  for ( int i = 0; i < list->size(); i++ ) {
30  if ( list->elem( i ) )
31  std::cout << list->get<DTKeyedConfig>( i )->getId() << std::endl;
32  }
34 
35  }
int i
Definition: DBlmapReader.cc:9
static void setList(cond::KeyList *list)
T const * get(int n) const
Definition: KeyList.h:39
const T & get() const
Definition: EventSetup.h:55
T const * product() const
Definition: ESHandle.h:62
int getId() const
BaseKeyed const * elem(int n) const
Definition: KeyList.cc:26
int size() const
Definition: KeyList.h:59
tuple cout
Definition: gather_cfg.py:41
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 list("!*","!HLTx*"if it matches 2 triggers or more) will accept the event if all the matching triggers are FAIL.It will reject the event if any of the triggers are PASS or EXCEPTION(this matches the behavior of"!*"before the partial wildcard feature was incorporated).Triggers which are in the READY state are completely ignored.(READY should never be returned since the trigger paths have been run

Member Data Documentation

bool DTKeyedConfigPopConAnalyzer::copyData
private

Definition at line 37 of file DTKeyedConfigPopConAnalyzer.cc.

Referenced by analyze().