CMS 3D CMS Logo

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

Public Member Functions

 CTPPSLHCInfoPlotter (const edm::ParameterSet &)
 
- 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)
 

Private Member Functions

void analyze (const edm::Event &, const edm::EventSetup &) override
 
void endJob () override
 

Private Attributes

TH1D * h_beamEnergy_
 
TH1D * h_betaStar_
 
TH1D * h_fill_
 
TH1D * h_run_
 
TH1D * h_xangle_
 
std::string lhcInfoLabel_
 
std::string outputFile_
 

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 22 of file CTPPSLHCInfoPlotter.cc.

Constructor & Destructor Documentation

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

Definition at line 49 of file CTPPSLHCInfoPlotter.cc.

50  : lhcInfoLabel_(iConfig.getParameter<std::string>("lhcInfoLabel")),
51  outputFile_(iConfig.getParameter<string>("outputFile")),
52 
53  h_beamEnergy_(new TH1D("h_beamEnergy", ";beam energy (GeV)", 81, -50., 8050.)),
54  h_xangle_(new TH1D("h_xangle", ";(half) crossing angle (#murad)", 201, -0.5, 200.5)),
55  h_betaStar_(new TH1D("h_betaStar", ";#beta^{*} (m)", 101, -0.005, 1.005)),
56 
57  h_fill_(new TH1D("h_fill", ";fill", 4001, 3999.5, 8000.5)),
58  h_run_(new TH1D("h_run", ";run", 6000, 270E3, 330E3)) {}
T getParameter(std::string const &) const

Member Function Documentation

void CTPPSLHCInfoPlotter::analyze ( const edm::Event iEvent,
const edm::EventSetup iSetup 
)
overrideprivate

Definition at line 62 of file CTPPSLHCInfoPlotter.cc.

References LHCInfo::betaStar(), LHCInfo::crossingAngle(), LHCInfo::energy(), LHCInfo::fillNumber(), edm::EventSetup::get(), h_beamEnergy_, h_betaStar_, h_fill_, h_run_, h_xangle_, edm::EventBase::id(), lhcInfoLabel_, and edm::EventID::run().

62  {
63  edm::ESHandle<LHCInfo> hLHCInfo;
64  iSetup.get<LHCInfoRcd>().get(lhcInfoLabel_, hLHCInfo);
65 
66  h_beamEnergy_->Fill(hLHCInfo->energy());
67  h_xangle_->Fill(hLHCInfo->crossingAngle());
68  h_betaStar_->Fill(hLHCInfo->betaStar());
69 
70  h_fill_->Fill(hLHCInfo->fillNumber());
71  h_run_->Fill(iEvent.id().run());
72 }
RunNumber_t run() const
Definition: EventID.h:39
float const crossingAngle() const
Definition: LHCInfo.cc:176
edm::EventID id() const
Definition: EventBase.h:59
float const betaStar() const
Definition: LHCInfo.cc:180
T get() const
Definition: EventSetup.h:71
float const energy() const
Definition: LHCInfo.cc:192
unsigned short const fillNumber() const
Definition: LHCInfo.cc:144
void CTPPSLHCInfoPlotter::endJob ( void  )
overrideprivatevirtual

Reimplemented from edm::one::EDAnalyzerBase.

Definition at line 76 of file CTPPSLHCInfoPlotter.cc.

References DEFINE_FWK_MODULE, h_beamEnergy_, h_betaStar_, h_fill_, h_run_, h_xangle_, and outputFile_.

76  {
77  auto f_out = std::make_unique<TFile>(outputFile_.c_str(), "recreate");
78 
79  h_beamEnergy_->Write();
80  h_xangle_->Write();
81  h_betaStar_->Write();
82 
83  h_fill_->Write();
84  h_run_->Write();
85 }

Member Data Documentation

TH1D* CTPPSLHCInfoPlotter::h_beamEnergy_
private

Definition at line 34 of file CTPPSLHCInfoPlotter.cc.

Referenced by analyze(), and endJob().

TH1D* CTPPSLHCInfoPlotter::h_betaStar_
private

Definition at line 36 of file CTPPSLHCInfoPlotter.cc.

Referenced by analyze(), and endJob().

TH1D* CTPPSLHCInfoPlotter::h_fill_
private

Definition at line 38 of file CTPPSLHCInfoPlotter.cc.

Referenced by analyze(), and endJob().

TH1D* CTPPSLHCInfoPlotter::h_run_
private

Definition at line 39 of file CTPPSLHCInfoPlotter.cc.

Referenced by analyze(), and endJob().

TH1D* CTPPSLHCInfoPlotter::h_xangle_
private

Definition at line 35 of file CTPPSLHCInfoPlotter.cc.

Referenced by analyze(), and endJob().

std::string CTPPSLHCInfoPlotter::lhcInfoLabel_
private

Definition at line 30 of file CTPPSLHCInfoPlotter.cc.

Referenced by analyze().

std::string CTPPSLHCInfoPlotter::outputFile_
private

Definition at line 32 of file CTPPSLHCInfoPlotter.cc.

Referenced by endJob().