CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Attributes
HistoParams< T > Class Template Reference

#include <RunHistogramManager.h>

Inheritance diagram for HistoParams< T >:
BaseHistoParams

Public Member Functions

virtual void beginRun (const unsigned int irun, TFileDirectory &subrun, const char *fillrun)
 
 HistoParams (T **pointer, const std::string type, const std::string name, const std::string title, const unsigned int nbinx=-1, const double xmin=-1., const double xmax=-1., const unsigned int nbiny=-1, const double ymin=-1., const double ymax=-1.)
 
 ~HistoParams ()
 
- Public Member Functions inherited from BaseHistoParams
 BaseHistoParams ()
 
virtual ~BaseHistoParams ()
 

Private Attributes

std::string _name
 
unsigned int _nbinx
 
unsigned int _nbiny
 
T ** _pointer
 
std::map< unsigned int, T * > _runpointers
 
std::string _title
 
std::string _type
 
double _xmax
 
double _xmin
 
double _ymax
 
double _ymin
 

Detailed Description

template<class T>
class HistoParams< T >

Definition at line 28 of file RunHistogramManager.h.

Constructor & Destructor Documentation

template<class T>
HistoParams< T >::HistoParams ( T **  pointer,
const std::string  type,
const std::string  name,
const std::string  title,
const unsigned int  nbinx = -1,
const double  xmin = -1.,
const double  xmax = -1.,
const unsigned int  nbiny = -1,
const double  ymin = -1.,
const double  ymax = -1. 
)
inline

Definition at line 32 of file RunHistogramManager.h.

34  :
36  _pointer(pointer),
37  _type(type), _name(name), _title(title), _nbinx(nbinx), _xmin(xmin), _xmax(xmax),
38  _nbiny(nbiny), _ymin(ymin), _ymax(ymax), _runpointers() { }
type
Definition: HCALResponse.h:22
std::string _title
std::map< unsigned int, T * > _runpointers
std::string _type
unsigned int _nbiny
std::string _name
unsigned int _nbinx
template<class T>
HistoParams< T >::~HistoParams ( )
inline

Definition at line 40 of file RunHistogramManager.h.

References HistoParams< T >::_name, HistoParams< T >::_pointer, and LogDebug.

40  {
41 
42  delete _pointer;
43  LogDebug("Destructor") << "Destroy " << _name;
44 
45  }
#define LogDebug(id)
std::string _name

Member Function Documentation

template<class T>
virtual void HistoParams< T >::beginRun ( const unsigned int  irun,
TFileDirectory subrun,
const char *  fillrun 
)
inlinevirtual

Implements BaseHistoParams.

Definition at line 47 of file RunHistogramManager.h.

References HistoParams< T >::_name, HistoParams< T >::_nbinx, HistoParams< T >::_pointer, HistoParams< T >::_runpointers, HistoParams< T >::_title, HistoParams< T >::_xmax, HistoParams< T >::_xmin, LogDebug, TFileDirectory::make(), and indexGen::title.

47  {
48 
49  if(_runpointers.find(irun)!=_runpointers.end()) {
50  *_pointer = _runpointers[irun];
51  LogDebug("TH1Fbooked") << "Histogram " << _name.c_str() << " already exists " << _runpointers[irun];
52 
53  }
54  else {
55 
56  char title[400];
57  sprintf(title,"%s %s %d",_title.c_str(),fillrun,irun);
58 
59  _runpointers[irun] = subrun.make<T>(_name.c_str(),
60  title,
61  _nbinx,
62  _xmin,
63  _xmax);
64 
65  *_pointer = _runpointers[irun];
66  LogDebug("TH1Fbooked") << "Histogram " << _name.c_str() << " booked " << _runpointers[irun];
67  }
68 
69  }
#define LogDebug(id)
std::string _title
std::map< unsigned int, T * > _runpointers
std::string _name
T * make() const
make new ROOT object
long double T
unsigned int _nbinx

Member Data Documentation

template<class T>
std::string HistoParams< T >::_name
private
template<class T>
unsigned int HistoParams< T >::_nbinx
private
template<class T>
unsigned int HistoParams< T >::_nbiny
private
template<class T>
T** HistoParams< T >::_pointer
private
template<class T>
std::map<unsigned int, T*> HistoParams< T >::_runpointers
private
template<class T>
std::string HistoParams< T >::_title
private
template<class T>
std::string HistoParams< T >::_type
private
template<class T>
double HistoParams< T >::_xmax
private
template<class T>
double HistoParams< T >::_xmin
private
template<class T>
double HistoParams< T >::_ymax
private
template<class T>
double HistoParams< T >::_ymin
private