CMS 3D CMS Logo

List of all members | Public Member Functions | Protected Attributes
hcaldqm::quantity::ValueQuantity Class Reference

#include <ValueQuantity.h>

Inheritance diagram for hcaldqm::quantity::ValueQuantity:
hcaldqm::quantity::Quantity hcaldqm::quantity::EventNumber hcaldqm::quantity::EventType hcaldqm::quantity::FlagQuantity hcaldqm::quantity::LumiSection hcaldqm::quantity::LumiSectionCoarse hcaldqm::quantity::RunNumber

Public Member Functions

double getValue (double x) override
 
int getValue (int x) override
 
ValueQuantitymakeCopy () override
 
double max () override
 
double min () override
 
int nbins () override
 
void setBits (TH1 *o) override
 
virtual void setLS (TH1 *o)
 
QuantityType type () override
 
 ValueQuantity ()
 
 ValueQuantity (ValueQuantityType type, bool isLog=false)
 
 ~ValueQuantity () override
 
- Public Member Functions inherited from hcaldqm::quantity::Quantity
virtual uint32_t getBin (double)
 
virtual uint32_t getBin (HcalDetId const &)
 
virtual uint32_t getBin (HcalElectronicsId const &)
 
virtual uint32_t getBin (HcalTrigTowerDetId const &)
 
virtual uint32_t getBin (int)
 
virtual std::vector< std::string > getLabels ()
 
virtual int getValue (HcalDetId const &)
 
virtual int getValue (HcalElectronicsId const &)
 
virtual int getValue (HcalTrigTowerDetId const &)
 
virtual bool isCoordinate ()
 
virtual bool isLog ()
 
virtual std::string name ()
 
 Quantity ()
 
 Quantity (std::string const &name, bool isLog)
 
virtual void setAxisType (AxisType at)
 
virtual void setLog (TH1 *o)
 
virtual void setMax (double)
 
virtual void setMin (double)
 
virtual void setNbins (int)
 
virtual void showOverflow (bool showOverflow)
 
virtual int wofnbins ()
 
virtual ~Quantity ()
 

Protected Attributes

ValueQuantityType _type
 
- Protected Attributes inherited from hcaldqm::quantity::Quantity
AxisType _axistype
 
bool _isLog
 
std::string _name
 
bool _showOverflow
 

Detailed Description

Definition at line 309 of file ValueQuantity.h.

Constructor & Destructor Documentation

◆ ValueQuantity() [1/2]

hcaldqm::quantity::ValueQuantity::ValueQuantity ( )
inline

Definition at line 311 of file ValueQuantity.h.

311 : _type() {}

Referenced by makeCopy().

◆ ValueQuantity() [2/2]

hcaldqm::quantity::ValueQuantity::ValueQuantity ( ValueQuantityType  type,
bool  isLog = false 
)
inline

Definition at line 312 of file ValueQuantity.h.

312 : Quantity(name_value.at(type), isLog), _type(type) {}

◆ ~ValueQuantity()

hcaldqm::quantity::ValueQuantity::~ValueQuantity ( )
inlineoverride

Definition at line 313 of file ValueQuantity.h.

313 {}

Member Function Documentation

◆ getValue() [1/2]

double hcaldqm::quantity::ValueQuantity::getValue ( double  x)
inlineoverridevirtual

Reimplemented from hcaldqm::quantity::Quantity.

Definition at line 329 of file ValueQuantity.h.

329  {
330  double ret_x = x;
331  if (_showOverflow) {
332  if (x < min()) {
333  ret_x = min();
334  } else if (x > max()) {
335  ret_x = max();
336  }
337  }
338  return ret_x;
339  }

References hcaldqm::quantity::Quantity::_showOverflow, max(), and min().

◆ getValue() [2/2]

int hcaldqm::quantity::ValueQuantity::getValue ( int  x)
inlineoverridevirtual

Reimplemented from hcaldqm::quantity::Quantity.

Reimplemented in hcaldqm::quantity::EventType, hcaldqm::quantity::RunNumber, hcaldqm::quantity::LumiSectionCoarse, hcaldqm::quantity::LumiSection, and hcaldqm::quantity::FlagQuantity.

Definition at line 318 of file ValueQuantity.h.

318  {
319  int ret_x = x;
320  if (_showOverflow) {
321  if (x < min()) {
322  ret_x = min();
323  } else if (x > max()) {
324  ret_x = max();
325  }
326  }
327  return ret_x;
328  }

References hcaldqm::quantity::Quantity::_showOverflow, max(), and min().

◆ makeCopy()

ValueQuantity* hcaldqm::quantity::ValueQuantity::makeCopy ( )
inlineoverridevirtual

◆ max()

double hcaldqm::quantity::ValueQuantity::max ( )
inlineoverridevirtual

◆ min()

double hcaldqm::quantity::ValueQuantity::min ( )
inlineoverridevirtual

◆ nbins()

int hcaldqm::quantity::ValueQuantity::nbins ( )
inlineoverridevirtual

◆ setBits()

void hcaldqm::quantity::ValueQuantity::setBits ( TH1 *  o)
inlineoverridevirtual

Reimplemented from hcaldqm::quantity::Quantity.

Definition at line 347 of file ValueQuantity.h.

347  {
349  setLS(o);
350  }

References EcalTangentSkim_cfg::o, hcaldqm::quantity::Quantity::setBits(), and setLS().

◆ setLS()

virtual void hcaldqm::quantity::ValueQuantity::setLS ( TH1 *  o)
inlinevirtual

Definition at line 351 of file ValueQuantity.h.

351  {
352  if (_type == fLS) {
353  // for LS axis - set the bit
354  // set extendable axes.
356  // o->SetCanExtend(TH1::kXaxis);
357  }
358  }

References _type, hcaldqm::constants::BIT_AXIS_LS, hcaldqm::constants::BIT_OFFSET, hcaldqm::quantity::fLS, and EcalTangentSkim_cfg::o.

Referenced by setBits().

◆ type()

QuantityType hcaldqm::quantity::ValueQuantity::type ( )
inlineoverridevirtual

Reimplemented from hcaldqm::quantity::Quantity.

Definition at line 342 of file ValueQuantity.h.

342 { return fValueQuantity; }

References hcaldqm::quantity::fValueQuantity.

Member Data Documentation

◆ _type

ValueQuantityType hcaldqm::quantity::ValueQuantity::_type
protected

Definition at line 361 of file ValueQuantity.h.

Referenced by makeCopy(), max(), min(), nbins(), SequenceTypes.ExpandVisitor::result(), and setLS().

hcaldqm::quantity::ValueQuantity::setLS
virtual void setLS(TH1 *o)
Definition: ValueQuantity.h:351
hcaldqm::quantity::ValueQuantity::min
double min() override
Definition: ValueQuantity.h:344
hcaldqm::quantity::ValueQuantity::_type
ValueQuantityType _type
Definition: ValueQuantity.h:361
hcaldqm::quantity::Quantity::setBits
virtual void setBits(TH1 *o)
Definition: Quantity.h:51
DDAxes::x
hcaldqm::constants::BIT_OFFSET
const int BIT_OFFSET
Definition: Constants.h:279
EcalTangentSkim_cfg.o
o
Definition: EcalTangentSkim_cfg.py:36
hcaldqm::quantity::Quantity::isLog
virtual bool isLog()
Definition: Quantity.h:35
hcaldqm::quantity::Quantity::_showOverflow
bool _showOverflow
Definition: Quantity.h:74
hcaldqm::quantity::fValueQuantity
Definition: Quantity.h:19
hcaldqm::quantity::min_value
const std::map< ValueQuantityType, double > min_value
Definition: ValueQuantity.h:130
hcaldqm::quantity::name_value
const std::map< ValueQuantityType, std::string > name_value
Definition: ValueQuantity.h:70
hcaldqm::quantity::Quantity::Quantity
Quantity()
Definition: Quantity.h:29
hcaldqm::quantity::ValueQuantity::max
double max() override
Definition: ValueQuantity.h:345
hcaldqm::constants::BIT_AXIS_LS
const int BIT_AXIS_LS
Definition: Constants.h:283
hcaldqm::quantity::ValueQuantity::ValueQuantity
ValueQuantity()
Definition: ValueQuantity.h:311
hcaldqm::quantity::Quantity::_isLog
bool _isLog
Definition: Quantity.h:72
hcaldqm::quantity::fLS
Definition: ValueQuantity.h:23
type
type
Definition: HCALResponse.h:21
hcaldqm::quantity::max_value
const std::map< ValueQuantityType, double > max_value
Definition: ValueQuantity.h:190
hcaldqm::quantity::nbins_value
const std::map< ValueQuantityType, int > nbins_value
Definition: ValueQuantity.h:250