CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ExpressionHisto.h
Go to the documentation of this file.
1 #ifndef CommonTools_Utils_ExpressionHisto_h
2 #define CommonTools_Utils_ExpressionHisto_h
3 // -*- C++ -*-
4 //
5 // Package: UtilAlgos
6 // Class : ExpressionHisto
7 //
16 //
17 // Original Author: Benedikt HEGNER
18 // Created: Fri Jun 1 14:35:22 CEST 2007
19 // $Id: ExpressionHisto.h,v 1.1 2010/05/04 10:36:06 hegner Exp $
20 //
21 
22 // system include files
23 
24 // user include files
28 
29 #include "TFile.h"
30 #include "TH1F.h"
31 #include "TH1.h"
32 
33 template<typename T>
35 public:
36  ExpressionHisto(const edm::ParameterSet& iConfig);
38 
39  void initialize(TFileDirectory& fs);
45  bool fill(const T& element, double weight=1.0, uint32_t i=0);
46 
47 private:
48  double min, max;
49  int nbins;
50  std::string name, description;
51  uint32_t nhistos;
53  TH1F ** hist;
55 };
56 
57 template<typename T>
59  min(iConfig.template getUntrackedParameter<double>("min")),
60  max(iConfig.template getUntrackedParameter<double>("max")),
61  nbins(iConfig.template getUntrackedParameter<int>("nbins")),
62  name(iConfig.template getUntrackedParameter<std::string>("name")),
63  description(iConfig.template getUntrackedParameter<std::string>("description")),
64  function(iConfig.template getUntrackedParameter<std::string>("plotquantity"),
65  iConfig.template getUntrackedParameter<bool>("lazyParsing", false)) {
66  int32_t itemsToPlot = iConfig.template getUntrackedParameter<int32_t>("itemsToPlot", -1);
67  if (itemsToPlot <= 0) {
68  nhistos = 1; separatePlots = false;
69  } else {
70  nhistos = itemsToPlot; separatePlots = true;
71  }
72 }
73 
74 template<typename T>
76 }
77 
78 template<typename T>
80 {
81  hist = new TH1F*[nhistos];
82  char buff[1024],baff[1024];
83  if (separatePlots) {
84  for (uint32_t i = 0; i < nhistos; i++) {
85  if (strstr(name.c_str(), "%d") != 0) {
86  snprintf(buff, 1024, name.c_str(), i+1);
87  } else {
88  snprintf(buff, 1024, "%s [#%d]", name.c_str(), i+1);
89  }
90  if (strstr(description.c_str(), "%d") != 0) {
91  snprintf(baff, 1024, description.c_str(), i+1);
92  } else {
93  snprintf(baff, 1024, "%s [#%d]", description.c_str(), i+1);
94  }
95  hist[i] = fs.make<TH1F>(buff,baff,nbins,min,max);
96  }
97  } else {
98  hist[0] = fs.make<TH1F>(name.c_str(),description.c_str(),nbins,min,max);
99  }
100 }
101 
102 template<typename T>
103 bool ExpressionHisto<T>::fill(const T& element, double weight, uint32_t i)
104 {
105  if (!separatePlots) hist[0]->Fill( function(element), weight );
106  else if (i < nhistos) hist[i]->Fill( function(element), weight );
107  else return false;
108  return true;
109 }
110 
111 #endif
int i
Definition: DBlmapReader.cc:9
Definition: vlib.h:257
#define min(a, b)
Definition: mlp_lapack.h:161
const T & max(const T &a, const T &b)
ExpressionHisto(const edm::ParameterSet &iConfig)
std::string description
std::string name
tuple description
Definition: idDealer.py:66
bool fill(const T &element, double weight=1.0, uint32_t i=0)
T * make() const
make new ROOT object
void initialize(TFileDirectory &fs)
long double T
def template
Definition: svgfig.py:520