CMS 3D CMS Logo

HcalNoiseInfoProducer.h
Go to the documentation of this file.
1 #ifndef _RECOMET_METPRODUCER_HCALNOISEINFOPRODUCER_H_
2 #define _RECOMET_METPRODUCER_HCALNOISEINFOPRODUCER_H_
3 
4 //
5 // HcalNoiseInfoProducer.h
6 //
7 // description: Definition of the producer for the HCAL noise information.
8 // Uses various algorithms to process digis, rechits, and calotowers
9 // and produce a vector of HcalNoiseRBXs.
10 // To minimize the time used to sort the data into HPD/RBX space, we fill
11 // an rbxarray of size 72, and then pick which rbxs are interesting at
12 // the end.
13 //
14 // author: J.P. Chou, Brown
15 //
16 
17 // system include files
18 #include <memory>
19 
20 // user include files
28 
32 
44 
49 
50 namespace reco {
51 
52  //
53  // class declaration
54  //
55 
57  public:
59  ~HcalNoiseInfoProducer() override;
60 
61  static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
62 
63  private:
64  //
65  // methods inherited from EDProducer
66  // produce(...) fills an HcalNoiseRBXArray with information from various places, and then
67  // picks which rbxs are interesting, storing them to the EDM.
68  //
69 
70  void produce(edm::Event&, const edm::EventSetup&) override;
71 
72  //
73  // more internal methods
74  // fills an HcalNoiseRBXArray with various data
75  // filldigis() depends on fillrechits() being called first
76  //
82 
83  // other helper functions
85 
86  //
87  // parameters
88  //
89 
90  bool fillDigis_; // fill digi information into HcalNoiseRBXs
91  bool fillRecHits_; // fill rechit information into HcalNoiseRBXs and HcalNoiseSummary
92  bool fillCaloTowers_; // fill calotower information into HcalNoiseRBXs and HcalNoiseSummary
93  bool fillTracks_; // fill track information into HcalNoiseSummary
94  bool fillLaserMonitor_; // fill laser monitor information into HcalNoiseSummary
95 
96  // These provide the requirements for writing an RBX to the event
97  int maxProblemRBXs_; // maximum number of problematic RBXs to be written to the event record
98 
99  // parameters for calculating summary variables
100  int maxCaloTowerIEta_; // maximum caloTower ieta
101  double maxTrackEta_; // maximum eta of the track
102  double minTrackPt_; // minimum track Pt
103  double maxNHF_;
105 
107 
108  std::string digiCollName_; // name of the digi collection
109  std::string recHitCollName_; // name of the rechit collection
110  std::string caloTowerCollName_; // name of the caloTower collection
111  std::string trackCollName_; // name of the track collection
112  std::string jetCollName_; // name of the jet collection
113 
126 
127  double totalCalibCharge; // placeholder to calculate total charge in calibration channels
128  double totalLasmonCharge; // placeholder to calculate total charge in laser monitor channels
129 
130  double minRecHitE_, minLowHitE_, minHighHitE_, minR45HitE_; // parameters used to determine noise status
131  HcalNoiseAlgo algo_; // algorithms to determine if an RBX is noisy
132 
134 
135  // Variables to store info regarding HBHE calibration digis
136  double calibdigiHBHEthreshold_; // minimum charge calib digi in order to be counted by noise algorithm
137  std::vector<int> calibdigiHBHEtimeslices_; // time slices to use when computing calibration charge
138  // Variables to store info regarding HF calibration digis
140  std::vector<int> calibdigiHFtimeslices_;
141 
143  std::vector<std::pair<double, double> > TS4TS5UpperCut_;
144  std::vector<std::pair<double, double> > TS4TS5LowerCut_;
145 
148 
149  std::vector<int> laserMonCBoxList_;
150  std::vector<int> laserMonIPhiList_;
151  std::vector<int> laserMonIEtaList_;
152 
156 
157  std::vector<float> adc2fC;
158  std::vector<float> adc2fCHF;
159  };
160 
161 } // namespace reco
162 
163 #endif
edm::EDGetTokenT< QIE10DigiCollection > lasermondigi_token_
std::vector< int > calibdigiHFtimeslices_
std::vector< int > HcalRecHitFlagsToBeExcluded_
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
void produce(edm::Event &, const edm::EventSetup &) override
std::vector< std::pair< double, double > > TS4TS5LowerCut_
edm::ESGetToken< HcalSeverityLevelComputer, HcalSeverityLevelComputerRcd > severitycomputer_token_
edm::ESGetToken< HcalTopology, HcalRecNumberingRecord > hcaltopo_token_
edm::EDGetTokenT< reco::PFJetCollection > jet_token_
void filljetinfo(edm::Event &, const edm::EventSetup &, HcalNoiseSummary &) const
void fillrechits(edm::Event &, const edm::EventSetup &, HcalNoiseRBXArray &, HcalNoiseSummary &) const
edm::ESGetToken< HcalChannelQuality, HcalChannelQualityRcd > quality_token_
edm::EDGetTokenT< HcalCalibDigiCollection > hcalcalibdigi_token_
edm::EDGetTokenT< HBHEDigiCollection > hbhedigi_token_
void fillOtherSummaryVariables(HcalNoiseSummary &summary, const CommonHcalNoiseRBXData &data) const
edm::ESGetToken< CaloGeometry, CaloGeometryRecord > calogeometry_token_
std::vector< std::pair< double, double > > TS4TS5UpperCut_
edm::EDGetTokenT< reco::TrackCollection > track_token_
edm::EDGetTokenT< HBHERecHitCollection > hbherechit_token_
void filldigis(edm::Event &, const edm::EventSetup &, HcalNoiseRBXArray &, HcalNoiseSummary &)
edm::ESGetToken< HcalDbService, HcalDbRecord > service_token_
fixed size matrix
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:80
std::vector< int > calibdigiHBHEtimeslices_
const HcalTopology * theHcalTopology_
HcalNoiseInfoProducer(const edm::ParameterSet &)
void filltracks(edm::Event &, const edm::EventSetup &, HcalNoiseSummary &) const
void fillcalotwrs(edm::Event &, const edm::EventSetup &, HcalNoiseRBXArray &, HcalNoiseSummary &) const
edm::EDGetTokenT< CaloTowerCollection > calotower_token_