CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions
L1GctConfigDump Class Reference

#include <L1GctConfigDump.h>

Inheritance diagram for L1GctConfigDump:
edm::EDAnalyzer

Public Member Functions

virtual void analyze (const edm::Event &, const edm::EventSetup &)
 
 L1GctConfigDump (const edm::ParameterSet &)
 
virtual ~L1GctConfigDump ()
 
- Public Member Functions inherited from edm::EDAnalyzer
 EDAnalyzer ()
 
std::string workerType () const
 
virtual ~EDAnalyzer ()
 

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

Description: test analyzer for L1 GCT parameters.

Implementation: <TODO: enter implementation details>

Author
: Jim Brooke
Date:
2009/05/07 10:31:29
Revision:
1.2

Definition at line 31 of file L1GctConfigDump.h.

Constructor & Destructor Documentation

L1GctConfigDump::L1GctConfigDump ( const edm::ParameterSet pSet)
explicit

Definition at line 29 of file L1GctConfigDump.cc.

30 {
31  // empty
32 }
L1GctConfigDump::~L1GctConfigDump ( )
virtual

Definition at line 35 of file L1GctConfigDump.cc.

36 {
37  // empty
38 }

Member Function Documentation

void L1GctConfigDump::analyze ( const edm::Event iEvent,
const edm::EventSetup iSetup 
)
virtual

Implements edm::EDAnalyzer.

Definition at line 40 of file L1GctConfigDump.cc.

References edm::EventSetup::get().

40  {
41 
42  // get records
43 
45  iSetup.get< L1GctJetFinderParamsRcd >().get( jfParams ) ;
46 
48  iSetup.get< L1GctChannelMaskRcd >().get( chanMask ) ;
49 
51  iSetup.get< L1JetEtScaleRcd >().get( jetScale ) ;
52 
54  iSetup.get< L1HtMissScaleRcd >().get( htmScale ) ;
55 
57  iSetup.get< L1HfRingEtScaleRcd >().get( hfRingScale ) ;
58 
59  edm::LogInfo("L1GctConfigDump") << (*jfParams) << std::endl;
60  edm::LogInfo("L1GctConfigDump") << (*chanMask) << std::endl;
61  edm::LogInfo("L1GctConfigDump") << "GCT jet Et scale : " << std::endl << (*jetScale) << std::endl;
62  edm::LogInfo("L1GctConfigDump") << "GCT HtMiss scale : " << std::endl << (*htmScale) << std::endl;
63  edm::LogInfo("L1GctConfigDump") << "GCT HF ring scale : " << std::endl << (*hfRingScale) << std::endl;
64 
65 }
const T & get() const
Definition: EventSetup.h:55