CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
PedsOnlyAlgorithm.cc
Go to the documentation of this file.
6 #include "TProfile.h"
7 #include "TH1.h"
8 #include <iostream>
9 #include <iomanip>
10 #include <cmath>
11 
12 using namespace sistrip;
13 
14 // ----------------------------------------------------------------------------
15 //
17  : CommissioningAlgorithm(anal),
18  hPeds_(0,""),
19  hNoise_(0,"")
20 {}
21 
22 // ----------------------------------------------------------------------------
23 //
24 void PedsOnlyAlgorithm::extract( const std::vector<TH1*>& histos ) {
25 
26  if ( !anal() ) {
28  << "[PedsOnlyAlgorithm::" << __func__ << "]"
29  << " NULL pointer to Analysis object!";
30  return;
31  }
32 
33  // Check number of histograms
34  if ( histos.size() != 2 ) {
36  }
37 
38  // Extract FED key from histo title
39  if ( !histos.empty() ) { anal()->fedKey( extractFedKey( histos.front() ) ); }
40 
41  // Extract histograms
42  std::vector<TH1*>::const_iterator ihis = histos.begin();
43  for ( ; ihis != histos.end(); ihis++ ) {
44 
45  // Check for NULL pointer
46  if ( !(*ihis) ) { continue; }
47 
48  // Check run type
49  SiStripHistoTitle title( (*ihis)->GetName() );
50  if ( title.runType() != sistrip::PEDS_ONLY ) {
52  continue;
53  }
54 
55  // Extract peds and raw noise histos (check for legacy names first!)
56  if ( title.extraInfo().find(sistrip::extrainfo::pedsAndRawNoise_) != std::string::npos ) {
57  hPeds_.first = *ihis;
58  hPeds_.second = (*ihis)->GetName();
59  hNoise_.first = *ihis;
60  hNoise_.second = (*ihis)->GetName();
61  PedsOnlyAnalysis* a = dynamic_cast<PedsOnlyAnalysis*>( const_cast<CommissioningAnalysis*>( anal() ) );
62  if ( a ) { a->legacy_ = true; }
63  } else if ( title.extraInfo().find(sistrip::extrainfo::pedestals_) != std::string::npos ) {
64  hPeds_.first = *ihis;
65  hPeds_.second = (*ihis)->GetName();
66  } else if ( title.extraInfo().find(sistrip::extrainfo::rawNoise_) != std::string::npos ) {
67  hNoise_.first = *ihis;
68  hNoise_.second = (*ihis)->GetName();
69  } else {
71  }
72 
73  }
74 
75 }
76 
77 // -----------------------------------------------------------------------------
78 //
80 
81  if ( !anal() ) {
83  << "[PedsOnlyAlgorithm::" << __func__ << "]"
84  << " NULL pointer to base Analysis object!";
85  return;
86  }
87 
89  PedsOnlyAnalysis* anal = dynamic_cast<PedsOnlyAnalysis*>( tmp );
90  if ( !anal ) {
92  << "[PedsOnlyAlgorithm::" << __func__ << "]"
93  << " NULL pointer to derived Analysis object!";
94  return;
95  }
96 
97  if ( !hPeds_.first ) {
99  return;
100  }
101 
102  if ( !hNoise_.first ) {
104  return;
105  }
106 
107  TProfile* peds_histo = dynamic_cast<TProfile*>(hPeds_.first);
108  TProfile* raw_histo = dynamic_cast<TProfile*>(hNoise_.first);
109 
110  if ( !peds_histo ) {
112  return;
113  }
114 
115  if ( !raw_histo ) {
117  return;
118  }
119 
120  if ( peds_histo->GetNbinsX() != 256 ) {
122  return;
123  }
124 
125  if ( raw_histo->GetNbinsX() != 256 ) {
127  return;
128  }
129 
130  // Iterate through APVs
131  for ( uint16_t iapv = 0; iapv < 2; iapv++ ) {
132 
133  // Used to calc mean and rms for peds and noise
134  float p_sum = 0., p_sum2 = 0., p_max = -1.*sistrip::invalid_, p_min = sistrip::invalid_;
135  float r_sum = 0., r_sum2 = 0., r_max = -1.*sistrip::invalid_, r_min = sistrip::invalid_;
136 
137  // Iterate through strips of APV
138  for ( uint16_t istr = 0; istr < 128; istr++ ) {
139 
140  static uint16_t strip;
141  strip = iapv*128 + istr;
142 
143  // Pedestals
144  if ( peds_histo ) {
145  if ( peds_histo->GetBinEntries(strip+1) ) {
146  anal->peds_[iapv][istr] = peds_histo->GetBinContent(strip+1);
147  p_sum += anal->peds_[iapv][istr];
148  p_sum2 += (anal->peds_[iapv][istr] * anal->peds_[iapv][istr]);
149  if ( anal->peds_[iapv][istr] > p_max ) { p_max = anal->peds_[iapv][istr]; }
150  if ( anal->peds_[iapv][istr] < p_min ) { p_min = anal->peds_[iapv][istr]; }
151  }
152  }
153 
154  // Raw noise
155  if ( !anal->legacy_ ) {
156  if ( raw_histo ) {
157  if ( raw_histo->GetBinEntries(strip+1) ) {
158  anal->raw_[iapv][istr] = raw_histo->GetBinContent(strip+1);
159  r_sum += anal->raw_[iapv][istr];
160  r_sum2 += ( anal->raw_[iapv][istr] * anal->raw_[iapv][istr] );
161  if ( anal->raw_[iapv][istr] > r_max ) { r_max = anal->raw_[iapv][istr]; }
162  if ( anal->raw_[iapv][istr] < r_min ) { r_min = anal->raw_[iapv][istr]; }
163  }
164  }
165  } else {
166  if ( peds_histo ) {
167  if ( peds_histo->GetBinEntries(strip+1) ) {
168  anal->raw_[iapv][istr] = raw_histo->GetBinError(strip+1);
169  r_sum += anal->raw_[iapv][istr];
170  r_sum2 += ( anal->raw_[iapv][istr] * anal->raw_[iapv][istr] );
171  if ( anal->raw_[iapv][istr] > r_max ) { r_max = anal->raw_[iapv][istr]; }
172  if ( anal->raw_[iapv][istr] < r_min ) { r_min = anal->raw_[iapv][istr]; }
173  }
174  }
175  }
176 
177  } // strip loop
178 
179  // Calc mean and rms for peds
180  if ( !anal->peds_[iapv].empty() ) {
181  p_sum /= static_cast<float>( anal->peds_[iapv].size() );
182  p_sum2 /= static_cast<float>( anal->peds_[iapv].size() );
183  anal->pedsMean_[iapv] = p_sum;
184  anal->pedsSpread_[iapv] = sqrt( fabs(p_sum2 - p_sum*p_sum) );
185  }
186 
187  // Calc mean and rms for raw noise
188  if ( !anal->raw_[iapv].empty() ) {
189  r_sum /= static_cast<float>( anal->raw_[iapv].size() );
190  r_sum2 /= static_cast<float>( anal->raw_[iapv].size() );
191  anal->rawMean_[iapv] = r_sum;
192  anal->rawSpread_[iapv] = sqrt( fabs(r_sum2 - r_sum*r_sum) );
193  }
194 
195  // Set max and min values for peds and raw noise
196  if ( p_max > -1.*sistrip::maximum_ ) { anal->pedsMax_[iapv] = p_max; }
197  if ( p_min < 1.*sistrip::maximum_ ) { anal->pedsMin_[iapv] = p_min; }
198  if ( r_max > -1.*sistrip::maximum_ ) { anal->rawMax_[iapv] = r_max; }
199  if ( r_min < 1.*sistrip::maximum_ ) { anal->rawMin_[iapv] = r_min; }
200 
201  } // apv loop
202 
203 }
static const char unexpectedTask_[]
Histogram-based analysis for pedestal run.
static const char rawNoise_[]
const uint32_t & fedKey() const
void strip(std::string &input, const std::string &blanks=" \n\t")
Definition: stringTools.cc:16
static const char pedsAndRawNoise_[]
Utility class that holds histogram title.
static const char numberOfHistos_[]
static const char unexpectedExtraInfo_[]
static const char numberOfBins_[]
static const char mlCommissioning_[]
T sqrt(T t)
Definition: SSEVec.h:46
uint32_t extractFedKey(const TH1 *const )
static const uint16_t maximum_
Definition: Constants.h:21
virtual void addErrorCode(const std::string &error)
void extract(const std::vector< TH1 * > &)
static const char pedestals_[]
static const uint16_t invalid_
Definition: Constants.h:17
std::vector< std::vector< double > > tmp
Definition: MVATrainer.cc:100
double a
Definition: hdecay.h:121
Abstract base for derived classes that provide analysis of commissioning histograms.
CommissioningAnalysis *const anal() const
static const char nullPtr_[]