BaseHistoParams

HistoParams

HistoParams

HistoParams

RunHistogramManager

Macros

Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
#ifndef DPGAnalysis_SiStripTools_RunHistogramManager_H
#define DPGAnalysis_SiStripTools_RunHistogramManager_H

#include <vector>
#include <map>
#include <string>
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "FWCore/Framework/interface/Run.h"
#include "FWCore/Framework/interface/ConsumesCollector.h"
#include "CommonTools/UtilAlgos/interface/TFileService.h"
#include "DataFormats/Common/interface/ConditionsInEdm.h"
#include "TH2F.h"
#include "TProfile2D.h"

class TH1F;
class TProfile;

class BaseHistoParams {
public:
  BaseHistoParams();
  virtual ~BaseHistoParams();

  //   virtual void beginRun(const edm::Run& iRun, TFileDirectory& subrun);
  virtual void beginRun(const unsigned int irun, TFileDirectory& subrun, const char* fillrun) = 0;
};

template <class T>
class HistoParams : public BaseHistoParams {
public:
  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.)
      : BaseHistoParams(),
        _pointer(pointer),
        _type(type),
        _name(name),
        _title(title),
        _nbinx(nbinx),
        _xmin(xmin),
        _xmax(xmax),
        _nbiny(nbiny),
        _ymin(ymin),
        _ymax(ymax),
        _runpointers() {}

  ~HistoParams() override {
    delete _pointer;
    LogDebug("Destructor") << "Destroy " << _name;
  }

  void beginRun(const unsigned int irun, TFileDirectory& subrun, const char* fillrun) override {
    if (_runpointers.find(irun) != _runpointers.end()) {
      *_pointer = _runpointers[irun];
      LogDebug("TH1Fbooked") << "Histogram " << _name.c_str() << " already exists " << _runpointers[irun];

    } else {
      char title[400];
      sprintf(title, "%s %s %d", _title.c_str(), fillrun, irun);

      _runpointers[irun] = subrun.make<T>(_name.c_str(), title, _nbinx, _xmin, _xmax);

      *_pointer = _runpointers[irun];
      LogDebug("TH1Fbooked") << "Histogram " << _name.c_str() << " booked " << _runpointers[irun];
    }
  }

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

template <>
class HistoParams<TH2F> : public BaseHistoParams {
public:
  HistoParams(TH2F** 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.)
      : BaseHistoParams(),
        _pointer(pointer),
        _type(type),
        _name(name),
        _title(title),
        _nbinx(nbinx),
        _xmin(xmin),
        _xmax(xmax),
        _nbiny(nbiny),
        _ymin(ymin),
        _ymax(ymax),
        _runpointers() {}

  ~HistoParams() override {
    delete _pointer;
    LogDebug("TH2FDestructor") << "Destroy " << _name;
  }

  void beginRun(const unsigned int irun, TFileDirectory& subrun, const char* fillrun) override {
    if (_runpointers.find(irun) != _runpointers.end()) {
      *_pointer = _runpointers[irun];
      LogDebug("TH2Fbooked") << "Histogram " << _name.c_str() << " already exists " << _runpointers[irun];

    } else {
      char title[400];
      sprintf(title, "%s %s %d", _title.c_str(), fillrun, irun);

      _runpointers[irun] = subrun.make<TH2F>(_name.c_str(), title, _nbinx, _xmin, _xmax, _nbiny, _ymin, _ymax);

      *_pointer = _runpointers[irun];
      LogDebug("TH2Fbooked") << "Histogram " << _name.c_str() << " booked " << _runpointers[irun];
    }
  }

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

template <>
class HistoParams<TProfile2D> : public BaseHistoParams {
public:
  HistoParams(TProfile2D** 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.)
      : BaseHistoParams(),
        _pointer(pointer),
        _type(type),
        _name(name),
        _title(title),
        _nbinx(nbinx),
        _xmin(xmin),
        _xmax(xmax),
        _nbiny(nbiny),
        _ymin(ymin),
        _ymax(ymax),
        _runpointers() {}

  ~HistoParams() override {
    delete _pointer;
    LogDebug("TProfile2DDestructor") << "Destroy " << _name;
  }

  void beginRun(const unsigned int irun, TFileDirectory& subrun, const char* fillrun) override {
    if (_runpointers.find(irun) != _runpointers.end()) {
      *_pointer = _runpointers[irun];
      LogDebug("TProfile2Dbooked") << "Histogram " << _name.c_str() << " already exists " << _runpointers[irun];

    } else {
      char title[400];
      sprintf(title, "%s %s %d", _title.c_str(), fillrun, irun);

      _runpointers[irun] = subrun.make<TProfile2D>(_name.c_str(), title, _nbinx, _xmin, _xmax, _nbiny, _ymin, _ymax);

      *_pointer = _runpointers[irun];
      LogDebug("TProfile2Dbooked") << "Histogram " << _name.c_str() << " booked " << _runpointers[irun];
    }
  }

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

class RunHistogramManager {
public:
  RunHistogramManager(edm::ConsumesCollector&& iC, const bool fillHistograms = false);
  RunHistogramManager(edm::ConsumesCollector& iC, const bool fillHistograms = false);
  ~RunHistogramManager();

  TH1F** makeTH1F(const char* name, const char* title, const unsigned int nbinx, const double xmin, const double xmax);
  TProfile** makeTProfile(
      const char* name, const char* title, const unsigned int nbinx, const double xmin, const double xmax);
  TH2F** makeTH2F(const char* name,
                  const char* title,
                  const unsigned int nbinx,
                  const double xmin,
                  const double xmax,
                  const unsigned int nbiny,
                  const double ymin,
                  const double ymax);
  TProfile2D** makeTProfile2D(const char* name,
                              const char* title,
                              const unsigned int nbinx,
                              const double xmin,
                              const double xmax,
                              const unsigned int nbiny,
                              const double ymin,
                              const double ymax);

  void beginRun(const edm::Run& iRun);
  void beginRun(const edm::Run& iRun, TFileDirectory& subdir);
  void beginRun(const unsigned int irun);
  void beginRun(const unsigned int irun, TFileDirectory& subdir);

private:
  bool _fillHistograms;
  std::vector<BaseHistoParams*> _histograms;
  edm::EDGetTokenT<edm::ConditionsInRunBlock> _conditionsInRunToken;
};

#endif  // DPGAnalysis_SiStripTools_RunHistogramManager_H