CMS 3D CMS Logo

Public Member Functions | Public Attributes

cscdqm::HistoBookRequest Struct Reference

#include <CSCDQM_MonitorObjectProvider.h>

List of all members.

Public Member Functions

 HistoBookRequest (const HistoDef &p_hdef, const HistoType &p_htype, const std::string &p_ctype, const std::string &p_folder, const std::string &p_title, const int p_nchX=0, const double p_lowX=0, const double p_highX=0, const int p_nchY=0, const double p_lowY=0, const double p_highY=0, const int p_nchZ=0, const double p_lowZ=0, const double p_highZ=0, const std::string &p_option="s")
 HistoBookRequest (const HistoDef &p_hdef, const std::string &p_folder, const std::string &p_title, const std::string &p_value)
 HistoBookRequest (const HistoDef &p_hdef, const std::string &p_folder, const float p_value)
 HistoBookRequest (const HistoDef &p_hdef, const std::string &p_folder, const int p_value)

Public Attributes

std::string ctype
float default_float
int default_int
std::string default_string
std::string folder
const HistoDefhdef
double highX
double highY
double highZ
HistoType htype
double lowX
double lowY
double lowZ
int nchX
int nchY
int nchZ
std::string option
std::string title

Detailed Description

Definition at line 31 of file CSCDQM_MonitorObjectProvider.h.


Constructor & Destructor Documentation

cscdqm::HistoBookRequest::HistoBookRequest ( const HistoDef p_hdef,
const HistoType p_htype,
const std::string &  p_ctype,
const std::string &  p_folder,
const std::string &  p_title,
const int  p_nchX = 0,
const double  p_lowX = 0,
const double  p_highX = 0,
const int  p_nchY = 0,
const double  p_lowY = 0,
const double  p_highY = 0,
const int  p_nchZ = 0,
const double  p_lowZ = 0,
const double  p_highZ = 0,
const std::string &  p_option = "s" 
) [inline]

Definition at line 57 of file CSCDQM_MonitorObjectProvider.h.

References ctype, folder, hdef, highX, highY, highZ, htype, lowX, lowY, lowZ, nchX, nchY, nchZ, option, and title.

                                                       {
      hdef = &p_hdef; 
      htype = p_htype;
      ctype = p_ctype;
      folder = p_folder; 
      title = p_title;
      nchX = p_nchX; 
      lowX = p_lowX;
      highX = p_highX; 
      nchY = p_nchY;
      lowY = p_lowY; 
      highY = p_highY;
      nchZ = p_nchZ; 
      lowZ = p_lowZ;
      highZ = p_highZ; 
      option = p_option;
    }
cscdqm::HistoBookRequest::HistoBookRequest ( const HistoDef p_hdef,
const std::string &  p_folder,
const int  p_value 
) [inline]

Definition at line 80 of file CSCDQM_MonitorObjectProvider.h.

References ctype, default_int, folder, cscdqm::HistoDef::getHistoName(), hdef, htype, cscdqm::INT, and title.

                                                                                            {
      hdef = &p_hdef;
      htype = INT;
      ctype = "INT";
      folder = p_folder;
      title = p_hdef.getHistoName();
      default_int = p_value;
    }
cscdqm::HistoBookRequest::HistoBookRequest ( const HistoDef p_hdef,
const std::string &  p_folder,
const float  p_value 
) [inline]

Definition at line 89 of file CSCDQM_MonitorObjectProvider.h.

References ctype, default_float, cscdqm::FLOAT, folder, cscdqm::HistoDef::getHistoName(), hdef, htype, and title.

                                                                                              {
      hdef = &p_hdef;
      htype = FLOAT;
      ctype = "FLOAT";
      folder = p_folder;
      title = p_hdef.getHistoName();
      default_float = p_value;
    }
cscdqm::HistoBookRequest::HistoBookRequest ( const HistoDef p_hdef,
const std::string &  p_folder,
const std::string &  p_title,
const std::string &  p_value 
) [inline]

Definition at line 98 of file CSCDQM_MonitorObjectProvider.h.

References ctype, default_string, folder, hdef, htype, cscdqm::STRING, and title.

                                                                          {
      hdef = &p_hdef;
      htype = STRING;
      ctype = "STRING";
      folder = p_folder;
      title = p_title;
      default_string = p_value;
    }

Member Data Documentation

Definition at line 35 of file CSCDQM_MonitorObjectProvider.h.

Referenced by HistoBookRequest().