CMS 3D CMS Logo

List of all members | Public Member Functions | Public Attributes
CTPPSRPAlignmentInfoReader Class Reference
Inheritance diagram for CTPPSRPAlignmentInfoReader:
edm::one::EDAnalyzer<> edm::one::EDAnalyzerBase edm::EDConsumerBase

Public Member Functions

void analyze (const edm::Event &e, const edm::EventSetup &c) override
 
 CTPPSRPAlignmentInfoReader (edm::ParameterSet const &iConfig)
 
 CTPPSRPAlignmentInfoReader (int i)
 
void printInfo (const CTPPSRPAlignmentCorrectionsData &alignments, const edm::Event &event)
 
 ~CTPPSRPAlignmentInfoReader () override
 
- Public Member Functions inherited from edm::one::EDAnalyzer<>
 EDAnalyzer ()=default
 
SerialTaskQueueglobalLuminosityBlocksQueue () final
 
SerialTaskQueueglobalRunsQueue () final
 
bool wantsGlobalLuminosityBlocks () const final
 
bool wantsGlobalRuns () const final
 
- Public Member Functions inherited from edm::one::EDAnalyzerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 EDAnalyzerBase ()
 
ModuleDescription const & moduleDescription () const
 
bool wantsStreamLuminosityBlocks () const
 
bool wantsStreamRuns () const
 
 ~EDAnalyzerBase () override
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
void convertCurrentProcessAlias (std::string const &processName)
 Convert "@currentProcess" in InputTag process names to the actual current process name. More...
 
 EDConsumerBase ()
 
 EDConsumerBase (EDConsumerBase const &)=delete
 
 EDConsumerBase (EDConsumerBase &&)=default
 
ESProxyIndex const * esGetTokenIndices (edm::Transition iTrans) const
 
ProductResolverIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
std::vector< ProductResolverIndexAndSkipBit > const & itemsToGetFrom (BranchType iType) const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
EDConsumerBase const & operator= (EDConsumerBase const &)=delete
 
EDConsumerBaseoperator= (EDConsumerBase &&)=default
 
bool registeredToConsume (ProductResolverIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
ProductResolverIndexAndSkipBit uncheckedIndexFrom (EDGetToken) const
 
void updateLookup (BranchType iBranchType, ProductResolverIndexHelper const &, bool iPrefetchMayGet)
 
void updateLookup (eventsetup::ESRecordsToProxyIndices const &)
 
virtual ~EDConsumerBase () noexcept(false)
 

Public Attributes

cond::Time_t iov_
 
std::string record_
 

Additional Inherited Members

- Public Types inherited from edm::one::EDAnalyzerBase
typedef EDAnalyzerBase ModuleType
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- Static Public Member Functions inherited from edm::one::EDAnalyzerBase
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 
- 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 ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes ()
 
template<typename ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes (ESInputTag const &tag)
 
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 19 of file CTPPSRPAlignmentInfoReader.cc.

Constructor & Destructor Documentation

CTPPSRPAlignmentInfoReader::CTPPSRPAlignmentInfoReader ( edm::ParameterSet const &  iConfig)
inlineexplicit

Definition at line 25 of file CTPPSRPAlignmentInfoReader.cc.

25  :
26  iov_(iConfig.getParameter<unsigned long long>("iov")),
27  record_(iConfig.getParameter<string>("record"))
28  {}
CTPPSRPAlignmentInfoReader::CTPPSRPAlignmentInfoReader ( int  i)
inlineexplicit

Definition at line 29 of file CTPPSRPAlignmentInfoReader.cc.

29 {}
CTPPSRPAlignmentInfoReader::~CTPPSRPAlignmentInfoReader ( )
inlineoverride

Member Function Documentation

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

Definition at line 37 of file CTPPSRPAlignmentInfoReader.cc.

References DEFINE_FWK_MODULE, edm::EventID::event(), edm::EventSetup::get(), edm::EventBase::id(), and edm::EventID::run().

37  {
38 
39  using namespace edm;
40 
41 
42  //this part gets the handle of the event source and the record (i.e. the Database)
43  if (e.id().run() == iov_){
45  if(strcmp(record_.c_str(),"CTPPSRPAlignmentCorrectionsDataRcd")==0){
46  context.get<CTPPSRPAlignmentCorrectionsDataRcd>().get(alignments);
47  }
48  else if(strcmp(record_.c_str(),"RPRealAlignmentRecord")==0){
49  context.get<RPRealAlignmentRecord>().get(alignments);
50  }
51  else {
52  context.get<RPMisalignedAlignmentRecord>().get(alignments);
53  }
54 
55 
56  //std::cout
57  edm::LogPrint("CTPPSRPAlignmentInfoReader")<< "New alignments found in run="
58  << e.id().run() << ", event=" << e.id().event() << ":\n"
59  << *alignments;
60  }
61 
62 }
RunNumber_t run() const
Definition: EventID.h:39
EventNumber_t event() const
Definition: EventID.h:41
edm::EventID id() const
Definition: EventBase.h:59
HLT enums.
void CTPPSRPAlignmentInfoReader::printInfo ( const CTPPSRPAlignmentCorrectionsData alignments,
const edm::Event event 
)

Member Data Documentation

cond::Time_t CTPPSRPAlignmentInfoReader::iov_

Definition at line 22 of file CTPPSRPAlignmentInfoReader.cc.

std::string CTPPSRPAlignmentInfoReader::record_

Definition at line 23 of file CTPPSRPAlignmentInfoReader.cc.