test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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
27 
31 
39 
40 namespace reco {
41 
42  //
43  // class declaration
44  //
45 
47  public:
50 
51  private:
52 
53  //
54  // methods inherited from EDProducer
55  // produce(...) fills an HcalNoiseRBXArray with information from various places, and then
56  // picks which rbxs are interesting, storing them to the EDM.
57  //
58 
59  virtual void produce(edm::Event&, const edm::EventSetup&) override;
60 
61  //
62  // more internal methods
63  // fills an HcalNoiseRBXArray with various data
64  // filldigis() depends on fillrechits() being called first
65  //
71 
72  // other helper functions
74 
75 
76  //
77  // parameters
78  //
79 
80  bool fillDigis_; // fill digi information into HcalNoiseRBXs
81  bool fillRecHits_; // fill rechit information into HcalNoiseRBXs and HcalNoiseSummary
82  bool fillCaloTowers_; // fill calotower information into HcalNoiseRBXs and HcalNoiseSummary
83  bool fillTracks_; // fill track information into HcalNoiseSummary
84 
85  // These provide the requirements for writing an RBX to the event
86  int maxProblemRBXs_; // maximum number of problematic RBXs to be written to the event record
87 
88  // parameters for calculating summary variables
89  int maxCaloTowerIEta_; // maximum caloTower ieta
90  double maxTrackEta_; // maximum eta of the track
91  double minTrackPt_; // minimum track Pt
92  double maxNHF_;
94 
95  std::string digiCollName_; // name of the digi collection
96  std::string recHitCollName_; // name of the rechit collection
97  std::string caloTowerCollName_; // name of the caloTower collection
98  std::string trackCollName_; // name of the track collection
99  std::string jetCollName_; // name of the jet collection
100 
107 
108  double TotalCalibCharge; // placeholder to calculate total charge in calibration channels
109 
110  double minRecHitE_, minLowHitE_, minHighHitE_, minR45HitE_; // parameters used to determine noise status
111  HcalNoiseAlgo algo_; // algorithms to determine if an RBX is noisy
112 
114 
115  // Variables to store info regarding HBHE calibration digis
116  double calibdigiHBHEthreshold_; // minimum charge calib digi in order to be counted by noise algorithm
117  std::vector<int> calibdigiHBHEtimeslices_; // time slices to use when computing calibration charge
118  // Variables to store info regarding HF calibration digis
120  std::vector<int> calibdigiHFtimeslices_;
121 
122 
124  std::vector<std::pair<double, double> > TS4TS5UpperCut_;
125  std::vector<std::pair<double, double> > TS4TS5LowerCut_;
126 
129 
130  float adc2fC[128];
131  };
132 
133 } // end of namespace
134 
135 #endif
std::vector< int > calibdigiHFtimeslices_
std::vector< int > HcalRecHitFlagsToBeExcluded_
void fillrechits(edm::Event &, const edm::EventSetup &, HcalNoiseRBXArray &, HcalNoiseSummary &) const
virtual void produce(edm::Event &, const edm::EventSetup &) override
std::vector< std::pair< double, double > > TS4TS5LowerCut_
void fillcalotwrs(edm::Event &, const edm::EventSetup &, HcalNoiseRBXArray &, HcalNoiseSummary &) const
edm::EDGetTokenT< reco::PFJetCollection > jet_token_
void filljetinfo(edm::Event &, const edm::EventSetup &, HcalNoiseSummary &) const
edm::EDGetTokenT< HcalCalibDigiCollection > hcalcalibdigi_token_
edm::EDGetTokenT< HBHEDigiCollection > hbhedigi_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 &)
std::vector< int > calibdigiHBHEtimeslices_
void filltracks(edm::Event &, const edm::EventSetup &, HcalNoiseSummary &) const
HcalNoiseInfoProducer(const edm::ParameterSet &)
void fillOtherSummaryVariables(HcalNoiseSummary &summary, const CommonHcalNoiseRBXData &data) const
edm::EDGetTokenT< CaloTowerCollection > calotower_token_