EcalTestPulseAnalyzer

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
#ifndef CalibCalorimetry_EcalLaserAnalyzer_EcalTestPulseAnalyzer_h
#define CalibCalorimetry_EcalLaserAnalyzer_EcalTestPulseAnalyzer_h

#include <memory>

#include <vector>
#include <map>

#include <FWCore/Framework/interface/one/EDAnalyzer.h>

#include <DataFormats/EcalDigi/interface/EcalDigiCollections.h>
#include <DataFormats/EcalRawData/interface/EcalRawDataCollections.h>
#include <Geometry/EcalMapping/interface/EcalElectronicsMapping.h>
#include <Geometry/EcalMapping/interface/EcalMappingRcd.h>

class TFile;
class TTree;

// Define geometrical constants
// NOT the same for "EB" and "EE"
//
//     "EB"       "EE"
//
//      0          0
//   1     2    1     2
//   3     4
//   5     6
//   7     8
//
//

// "EB" geometry
#define NCRYSEB 1700  // Number of crystals per EB supermodule
#define NMODEB 9      // Number of EB submodules
#define NPNPERMOD 2   // Number of PN per module

// "EE" geometry
#define NCRYSEE 830  // Number of crystals per EE supermodule
#define NMODEE 21    // Number of EE submodules

#define NGAINPN 2   // Number of gains
#define NGAINAPD 4  // Number of gains

class EcalTestPulseAnalyzer : public edm::one::EDAnalyzer<> {
public:
  explicit EcalTestPulseAnalyzer(const edm::ParameterSet &iConfig);
  ~EcalTestPulseAnalyzer() override;

  void analyze(const edm::Event &e, const edm::EventSetup &c) override;
  void beginJob() override;
  void endJob() override;

private:
  int iEvent;

  const std::string eventHeaderCollection_;
  const std::string eventHeaderProducer_;
  const std::string digiCollection_;
  const std::string digiProducer_;
  const std::string digiPNCollection_;

  const edm::EDGetTokenT<EcalRawDataCollection> rawDataToken_;
  edm::EDGetTokenT<EBDigiCollection> ebDigiToken_;
  edm::EDGetTokenT<EEDigiCollection> eeDigiToken_;
  const edm::EDGetTokenT<EcalPnDiodeDigiCollection> pnDiodeDigiToken_;
  const edm::ESGetToken<EcalElectronicsMapping, EcalMappingRcd> mappingToken_;

  // Framework parameters

  const unsigned int _nsamples;
  const unsigned int _presample;
  const unsigned int _firstsample;
  const unsigned int _lastsample;
  const unsigned int _samplemin;
  const unsigned int _samplemax;
  const unsigned int _nsamplesPN;
  const unsigned int _presamplePN;
  const unsigned int _firstsamplePN;
  const unsigned int _lastsamplePN;
  const unsigned int _niter;
  const double _chi2max;
  const double _timeofmax;
  const std::string _ecalPart;
  const int _fedid;

  const std::string resdir_;

  // Output file names

  std::string rootfile;
  std::string resfile;

  //  Define geometrical constants
  //  Default values correspond to "EB" geometry (1700 crystals)

  unsigned int nCrys;
  unsigned int nMod;
  unsigned int nGainPN;
  unsigned int nGainAPD;

  // Count TP Events
  int TPEvents;

  double ret_data[20];

  int towerID;
  int channelID;

  // Identify run

  int runType;
  int runNum;
  int fedID;
  int dccID;
  int side;
  int iZ;

  // Root Files

  TFile *outFile;  // from 'analyze': Data
  TFile *resFile;  // from 'endJob': Results

  // Temporary data trees

  TTree *trees[NCRYSEB];

  // Declaration of leaves types

  int phi, eta;
  int event;
  double adc[10];
  double pn[50];

  int apdGain;
  int pnGain;
  int pnG;
  double apdAmpl;
  double apdTime;
  double pnAmpl0;
  double pnAmpl1;
  double pnAmpl;

  // Results trees

  TTree *restrees;
  TTree *respntrees;

  std::map<int, int> channelMapEE;
  std::vector<int> dccMEM;
  std::vector<int> modules;

  // Declaration of leaves types

  int ieta, iphi, flag, gain;
  int pnID, moduleID;
  int channelIteratorEE;
  double APD[6], PN[6];

  int iEta[NCRYSEB], iPhi[NCRYSEB];
  unsigned int iModule[NCRYSEB];
  int iTowerID[NCRYSEB], iChannelID[NCRYSEB], idccID[NCRYSEB], iside[NCRYSEB];

  unsigned int firstChanMod[NMODEB];
  unsigned int isFirstChanModFilled[NMODEB];
};
#endif