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 Member Functions
SiStripHistoId Class Reference

#include <DQM/SiStripCommon/interface/SiStripHistoId.h>

Public Member Functions

std::string createHistoId (std::string description, std::string id_type, uint32_t component_id)
 
std::string createHistoLayer (std::string description, std::string id_type, std::string path, std::string flag)
 
uint32_t getComponentId (std::string histoid)
 
std::string getComponentType (std::string histoid)
 
std::string getSubdetid (uint32_t id, bool flag_ring)
 
 SiStripHistoId ()
 
virtual ~SiStripHistoId ()
 

Private Member Functions

const SiStripHistoIdoperator= (const SiStripHistoId &)
 
std::string returnIdPart (std::string histoid, uint32_t whichpart)
 
 SiStripHistoId (const SiStripHistoId &)
 

Detailed Description

Description: <one line="" class="" summary>="">

Usage: <usage>

Definition at line 26 of file SiStripHistoId.h.

Constructor & Destructor Documentation

SiStripHistoId::SiStripHistoId ( )

Definition at line 26 of file SiStripHistoId.cc.

27 {
28 }
SiStripHistoId::~SiStripHistoId ( )
virtual

Definition at line 31 of file SiStripHistoId.cc.

32 {
33 }
SiStripHistoId::SiStripHistoId ( const SiStripHistoId )
private

Member Function Documentation

std::string SiStripHistoId::createHistoId ( std::string  description,
std::string  id_type,
uint32_t  component_id 
)

Definition at line 36 of file SiStripHistoId.cc.

References idDealer::description.

Referenced by SiStripLAProfileBooker::beginRun(), SiStripBaseCondObjDQM::bookCumulMEs(), SiStripMonitorTrack::bookModMEs(), SiStripBaseCondObjDQM::bookProfileMEs(), SiStripMonitorTrack::clusterInfos(), SiStripMonitorPedestals::createMEs(), SiStripMonitorCluster::createModuleMEs(), SiStripMonitorDigi::createModuleMEs(), and SiStripMonitorQuality::getQualityME().

36  {
37  size_t pos1 = description.find("__", 0 ); // check if std::string 'description' contains by mistake the 'separator1'
38  size_t pos2 = description.find("__", 0 ); // check if std::string 'description' contains by mistake the 'separator2'
39  std::string local_histo_id;
40  std::ostringstream compid;
41  compid<<component_id; // use std::ostringstream for casting integer to std::string
42 
43  if ( pos1 == std::string::npos && pos2 == std::string::npos ){ // ok, not found either separator
44  if(id_type=="fed" || id_type=="det" || id_type=="fec"){ // ok! is one of the accepted id_type-s
45  local_histo_id = description + "__" + id_type + "__" + compid.str();
46  }else{
47  local_histo_id = description + "__dummy__" + compid.str();
48  edm::LogError("SiStripHistoId") <<" SiStripHistoId::WrongInput "
49  <<" no such type of component accepted: "<<id_type
50  <<" id_type can be: fed, det, or fec.";
51  }
52  }else{
53  local_histo_id = description + "_dummy___" + id_type + "__" + compid.str();
54  edm::LogError("SiStripHistoId") <<" SiStripHistoId::WrongInput "
55  <<" histogram description cannot contain: __ or: __"
56  <<" histogram description = "<<description;
57  }
58  return local_histo_id;
59 }
tuple description
Definition: idDealer.py:66
std::string SiStripHistoId::createHistoLayer ( std::string  description,
std::string  id_type,
std::string  path,
std::string  flag 
)

Definition at line 61 of file SiStripHistoId.cc.

References idDealer::description, LogTrace, and scaleCards::path.

Referenced by SiStripMonitorTrack::bookLayerMEs(), SiStripBaseCondObjDQM::bookSummaryCumulMEs(), SiStripBaseCondObjDQM::bookSummaryMEs(), SiStripBaseCondObjDQM::bookSummaryProfileMEs(), SiStripMonitorCluster::createLayerMEs(), SiStripMonitorDigi::createLayerMEs(), SiStripNoisesDQM::fillMEsForLayer(), SiStripLorentzAngleDQM::fillMEsForLayer(), SiStripPedestalsDQM::fillMEsForLayer(), SiStripThresholdDQM::fillMEsForLayer(), SiStripApvGainsDQM::fillMEsForLayer(), and SiStripQualityDQM::fillMEsForLayer().

61  {
62  size_t pos1 = description.find( "__", 0 ); // check if std::string 'description' contains by mistake the 'separator1'
63  size_t pos2 = description.find( "__", 0 ); // check if std::string 'description' contains by mistake the 'separator2'
64  std::string local_histo_id;
65  if ( pos1 == std::string::npos && pos2 == std::string::npos ){ // ok, not found either separator
66  if(id_type=="fed" || id_type=="det" || id_type=="fec" || id_type=="layer"){ // ok! is one of the accepted id_type-s
67  if(flag.size() > 0)
68  local_histo_id = description + "__" + flag + "__" + path;
69  else
70  local_histo_id = description + "__" + path;
71  LogTrace("SiStripHistoId") << "Local_histo_ID " << local_histo_id << std::endl;
72  }else{
73  local_histo_id = description + "___dummy___" + path;
74  edm::LogError("SiStripHistoId") <<" SiStripHistoId::WrongInput "
75  <<" no such type of component accepted: "<<id_type
76  <<" id_type can be: fed, det, fec or layer ";
77  }
78  }else{
79  local_histo_id = description + "_dummy___" + path;
80  edm::LogWarning("SiStripHistoId") <<" SiStripHistoId::WrongInput "
81  <<" histogram description cannot contain: __ or: __"
82  <<" histogram description = "<<description;
83  }
84  return local_histo_id;
85 }
long int flag
Definition: mlp_lapack.h:47
list path
Definition: scaleCards.py:51
#define LogTrace(id)
tuple description
Definition: idDealer.py:66
uint32_t SiStripHistoId::getComponentId ( std::string  histoid)

Definition at line 120 of file SiStripHistoId.cc.

References LaserDQM_cfg::input, and returnIdPart().

Referenced by SiStripCalibLorentzAngle::algoBeginJob().

120  {
121  uint32_t local_component_id;
122  std::istringstream input(returnIdPart(histoid,3)); input >> local_component_id; // use std::istringstream for casting from std::string to uint32_t
123  return local_component_id;
124 }
std::string returnIdPart(std::string histoid, uint32_t whichpart)
std::string SiStripHistoId::getComponentType ( std::string  histoid)

Definition at line 127 of file SiStripHistoId.cc.

References returnIdPart().

127  {
128  return returnIdPart(histoid,2);
129 }
std::string returnIdPart(std::string histoid, uint32_t whichpart)
std::string SiStripHistoId::getSubdetid ( uint32_t  id,
bool  flag_ring 
)

Definition at line 87 of file SiStripHistoId.cc.

References TOBDetId::layer(), TIBDetId::layer(), TIDDetId::ring(), TECDetId::ring(), TIDDetId::side(), TECDetId::side(), DetId::subdetId(), StripSubdetector::TEC, StripSubdetector::TIB, StripSubdetector::TID, StripSubdetector::TOB, TIDDetId::wheel(), and TECDetId::wheel().

Referenced by SiStripMonitorTrack::book(), SiStripMonitorDigi::createMEs(), SiStripMonitorCluster::createMEs(), and SiStripMonitorTrack::fillMEs().

87  { std::string rest1;
88 
89  const int buf_len = 50;
90  char temp_str[buf_len];
91 
92  StripSubdetector subdet(id);
93  if( subdet.subdetId() == StripSubdetector::TIB){
94  // --------------------------- TIB --------------------------- //
95  TIBDetId tib1 = TIBDetId(id);
96  snprintf(temp_str, buf_len, "TIB__layer__%i", tib1.layer());
97  }else if( subdet.subdetId() == StripSubdetector::TID){
98  // --------------------------- TID --------------------------- //
99  TIDDetId tid1 = TIDDetId(id);
100  if (flag_ring) snprintf(temp_str, buf_len, "TID__side__%i__ring__%i", tid1.side(), tid1.ring());
101  else snprintf(temp_str, buf_len, "TID__side__%i__wheel__%i", tid1.side(), tid1.wheel());
102  }else if(subdet.subdetId() == StripSubdetector::TOB){
103  // --------------------------- TOB --------------------------- //
104  TOBDetId tob1 = TOBDetId(id);
105  snprintf(temp_str, buf_len, "TOB__layer__%i",tob1.layer());
106  }else if(subdet.subdetId() == StripSubdetector::TEC){
107  // --------------------------- TEC --------------------------- //
108  TECDetId tec1 = TECDetId(id);
109  if (flag_ring) snprintf(temp_str, buf_len, "TEC__side__%i__ring__%i", tec1.side(), tec1.ring());
110  else snprintf(temp_str, buf_len, "TEC__side__%i__wheel__%i", tec1.side(), tec1.wheel());
111  }else{
112  // --------------------------- ??? --------------------------- //
113  edm::LogError("SiStripTkDQM|WrongInput")<<"no such subdetector type :"<<subdet.subdetId()<<" no folder set!"<<std::endl;
114  snprintf(temp_str,0,"%s","");
115  }
116 
117  return std::string(temp_str);
118 }
unsigned int layer() const
layer id
Definition: TOBDetId.h:39
unsigned int side() const
positive or negative id
Definition: TECDetId.h:47
unsigned int ring() const
ring id
Definition: TIDDetId.h:55
unsigned int side() const
positive or negative id
Definition: TIDDetId.h:45
unsigned int wheel() const
wheel id
Definition: TECDetId.h:52
unsigned int layer() const
layer id
Definition: TIBDetId.h:41
unsigned int ring() const
ring id
Definition: TECDetId.h:71
unsigned int wheel() const
wheel id
Definition: TIDDetId.h:50
const SiStripHistoId& SiStripHistoId::operator= ( const SiStripHistoId )
private
std::string SiStripHistoId::returnIdPart ( std::string  histoid,
uint32_t  whichpart 
)
private

Definition at line 132 of file SiStripHistoId.cc.

Referenced by getComponentId(), and getComponentType().

132  {
133  size_t length1=histoid.find("__",0);
134  if(length1==std::string::npos){ // no separator1 found
135  edm::LogWarning("SiStripTkDQM|UnregularInput")<<"no regular histoid. Returning 0";
136  return "0";
137  }
138  std::string part1 = histoid.substr(0,length1); // part of 'histoid' up to 'separator1'
139  if(whichpart==1) return part1;
140  std::string remain1 = histoid.substr(length1+2); // rest of 'histoid' starting at end of 'separator1'
141  size_t length2=remain1.find("__",0);
142  if(length2==std::string::npos){ // no separator2 found
143  edm::LogWarning("SiStripTkDQM|UnregularInput")<<"no regular histoid. Returning 0";
144  return "0";
145  }
146  std::string part2 = remain1.substr(0,length2); // part of 'remain1' up to 'separator2'
147  if(whichpart==2) return part2;
148  std::string part3 = remain1.substr(length2+2); // rest of remain1 starting at end of 'separator2'
149  if(whichpart==3) return part3;
150  edm::LogWarning("SiStripTkDQM|UnregularInput")<<"no such whichpart="<<whichpart<<" returning 0";
151  return "0";
152 }