CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
List of all members | Public Member Functions
BeamSpotPI::BeamSpot_runhistory< my_param, PayloadType > Class Template Reference

#include <BeamSpotPayloadInspectorHelper.h>

Inheritance diagram for BeamSpotPI::BeamSpot_runhistory< my_param, PayloadType >:
cond::payloadInspector::RunHistoryPlot< PayloadType, std::pair< double, double > > cond::payloadInspector::Plot2D< PayloadType, std::tuple< float, std::string >, std::pair< double, double >, MULTI_IOV, 1 > cond::payloadInspector::PlotImpl< IOV_M, NTAGS > cond::payloadInspector::PlotBase

Public Member Functions

 BeamSpot_runhistory ()
 
std::pair< double, double > getFromPayload (PayloadType &payload) override
 
- Public Member Functions inherited from cond::payloadInspector::RunHistoryPlot< PayloadType, std::pair< double, double > >
bool fill () override
 
 RunHistoryPlot (const std::string &title, const std::string &yLabel)
 
 ~RunHistoryPlot () override=default
 
- Public Member Functions inherited from cond::payloadInspector::Plot2D< PayloadType, std::tuple< float, std::string >, std::pair< double, double >, MULTI_IOV, 1 >
std::shared_ptr< PayloadType > fetchPayload (const cond::Hash &payloadHash)
 
 Plot2D (const std::string &type, const std::string &title, const std::string xLabel, const std::string &yLabel)
 
std::string serializeData () override
 
 ~Plot2D () override=default
 
- Public Member Functions inherited from cond::payloadInspector::PlotImpl< IOV_M, NTAGS >
 PlotImpl (const std::string &type, const std::string &title)
 
std::string processData () override
 
 ~PlotImpl () override=default
 
- Public Member Functions inherited from cond::payloadInspector::PlotBase
void addInputParam (const std::string &paramName)
 
cond::persistency::Session dbSession ()
 
template<typename PayloadType >
std::shared_ptr< PayloadType > fetchPayload (const cond::Hash &payloadHash)
 
template<int index>
TagReference getTag ()
 
cond::Tag_t getTagInfo (const std::string &tag)
 
virtual void init ()
 
const std::map< std::string,
std::string > & 
inputParamValues () const
 
bool isSingleIov () const
 
bool isTwoTags () const
 
unsigned int ntags () const
 
std::string payloadType () const
 
 PlotBase ()
 
std::string title () const
 
std::string type () const
 
virtual ~PlotBase ()=default
 

Additional Inherited Members

- Public Types inherited from cond::payloadInspector::RunHistoryPlot< PayloadType, std::pair< double, double > >
typedef Plot2D< PayloadType,
std::tuple< float, std::string >
, std::pair< double, double >
, MULTI_IOV, 1 > 
Base
 
- Public Types inherited from cond::payloadInspector::Plot2D< PayloadType, std::tuple< float, std::string >, std::pair< double, double >, MULTI_IOV, 1 >
typedef PlotImpl< IOV_M, NTAGS > Base
 
- Protected Attributes inherited from cond::payloadInspector::Plot2D< PayloadType, std::tuple< float, std::string >, std::pair< double, double >, MULTI_IOV, 1 >
std::vector< std::tuple
< std::tuple< float,
std::string >, std::pair
< double, double > > > 
m_plotData
 
- Protected Attributes inherited from cond::payloadInspector::PlotBase
std::set< std::string > m_inputParams
 
std::map< std::string,
std::string > 
m_inputParamValues
 
PlotAnnotations m_plotAnnotations
 
std::vector< std::pair
< cond::Time_t, cond::Time_t > > 
m_tagBoundaries
 
std::vector< std::vector
< std::tuple< cond::Time_t,
cond::Hash > > > 
m_tagIovs
 
std::vector< std::string > m_tagNames
 

Detailed Description

template<parameters my_param, class PayloadType>
class BeamSpotPI::BeamSpot_runhistory< my_param, PayloadType >

Definition at line 127 of file BeamSpotPayloadInspectorHelper.h.

Constructor & Destructor Documentation

template<parameters my_param, class PayloadType >
BeamSpotPI::BeamSpot_runhistory< my_param, PayloadType >::BeamSpot_runhistory ( )
inline

Member Function Documentation

template<parameters my_param, class PayloadType >
std::pair<double, double> BeamSpotPI::BeamSpot_runhistory< my_param, PayloadType >::getFromPayload ( PayloadType &  payload)
inlineoverridevirtual

Implements cond::payloadInspector::RunHistoryPlot< PayloadType, std::pair< double, double > >.

Definition at line 133 of file BeamSpotPayloadInspectorHelper.h.

References BeamSpotPI::dxdz, BeamSpotPI::dydz, BeamSpotPI::END_OF_TYPES, runTheMatrix::ret, BeamSpotPI::sigmaX, BeamSpotPI::sigmaY, BeamSpotPI::sigmaZ, BeamSpotPI::X, BeamSpotPI::Y, and BeamSpotPI::Z.

133  {
134  auto ret = std::make_pair<double, double>(-9999., -9999.);
135 
136  switch (my_param) {
137  case X:
138  return std::make_pair<double, double>(payload.GetX(), payload.GetXError());
139  case Y:
140  return std::make_pair<double, double>(payload.GetY(), payload.GetYError());
141  case Z:
142  return std::make_pair<double, double>(payload.GetZ(), payload.GetZError());
143  case sigmaX:
144  return std::make_pair<double, double>(payload.GetBeamWidthX(), payload.GetBeamWidthXError());
145  case sigmaY:
146  return std::make_pair<double, double>(payload.GetBeamWidthY(), payload.GetBeamWidthYError());
147  case sigmaZ:
148  return std::make_pair<double, double>(payload.GetSigmaZ(), payload.GetSigmaZError());
149  case dxdz:
150  return std::make_pair<double, double>(payload.Getdxdz(), payload.GetdxdzError());
151  case dydz:
152  return std::make_pair<double, double>(payload.Getdydz(), payload.GetdydzError());
153  case END_OF_TYPES:
154  return ret;
155  default:
156  return ret;
157  }
158  }
tuple ret
prodAgent to be discontinued