CMS 3D CMS Logo

LumiReWeighting.cc
Go to the documentation of this file.
1 #ifndef PhysicsTools_Utilities_interface_LumiReWeighting_cc
2 #define PhysicsTools_Utilities_interface_LumiReWeighting_cc
3 
4 
20 #include "TRandom1.h"
21 #include "TRandom2.h"
22 #include "TRandom3.h"
23 #include "TStopwatch.h"
24 #include "TH1.h"
25 #include "TFile.h"
26 #include <iostream>
27 #include <string>
28 #include <algorithm>
29 #include <boost/shared_ptr.hpp>
36 
37 using namespace edm;
38 
40  std::string dataFile,
41  std::string GenHistName,
42  std::string DataHistName,
43  const edm::InputTag& PileupSumInfoInputTag ) :
44  generatedFileName_( generatedFile),
45  dataFileName_ ( dataFile ),
46  GenHistName_ ( GenHistName ),
47  DataHistName_ ( DataHistName ),
48  pileupSumInfoTag_ ( PileupSumInfoInputTag )
49  {
50  generatedFile_ = boost::shared_ptr<TFile>( new TFile(generatedFileName_.c_str()) ); //MC distribution
51  dataFile_ = boost::shared_ptr<TFile>( new TFile(dataFileName_.c_str()) ); //Data distribution
52 
53  Data_distr_ = boost::shared_ptr<TH1>( (static_cast<TH1*>(dataFile_->Get( DataHistName_.c_str() )->Clone() )) );
54  MC_distr_ = boost::shared_ptr<TH1>( (static_cast<TH1*>(generatedFile_->Get( GenHistName_.c_str() )->Clone() )) );
55 
56  // MC * data/MC = data, so the weights are data/MC:
57 
58  // normalize both histograms first
59 
60  Data_distr_->Scale( 1.0/ Data_distr_->Integral() );
61  MC_distr_->Scale( 1.0/ MC_distr_->Integral() );
62 
63  weights_ = boost::shared_ptr<TH1>( static_cast<TH1*>(Data_distr_->Clone()) );
64 
65  weights_->SetName("lumiWeights");
66 
67  TH1* den = dynamic_cast<TH1*>(MC_distr_->Clone());
68 
69  //den->Scale(1.0/ den->Integral());
70 
71  weights_->Divide( den ); // so now the average weight should be 1.0
72 
73  std::cout << " Lumi/Pileup Reweighting: Computed Weights per In-Time Nint " << std::endl;
74 
75  int NBins = weights_->GetNbinsX();
76 
77  for(int ibin = 1; ibin<NBins+1; ++ibin){
78  std::cout << " " << ibin-1 << " " << weights_->GetBinContent(ibin) << std::endl;
79  }
80 
81 
82  FirstWarning_ = true;
83  OldLumiSection_ = -1;
84 }
85 
86 LumiReWeighting::LumiReWeighting(const std::vector< float >& MC_distr,const std::vector< float >& Lumi_distr, const edm::InputTag& PileupSumInfoInputTag ) :
87  pileupSumInfoTag_ ( PileupSumInfoInputTag )
88  {
89  // no histograms for input: use vectors
90 
91  // now, make histograms out of them:
92 
93  // first, check they are the same size...
94 
95  if( MC_distr.size() != Lumi_distr.size() ){
96 
97  std::cerr <<"ERROR: LumiReWeighting: input vectors have different sizes. Quitting... \n";
98  return;
99 
100  }
101 
102  Int_t NBins = MC_distr.size();
103 
104  MC_distr_ = boost::shared_ptr<TH1> ( new TH1F("MC_distr","MC dist",NBins,-0.5, float(NBins)-0.5) );
105  Data_distr_ = boost::shared_ptr<TH1> ( new TH1F("Data_distr","Data dist",NBins,-0.5, float(NBins)-0.5) );
106 
107  weights_ = boost::shared_ptr<TH1> ( new TH1F("luminumer","luminumer",NBins,-0.5, float(NBins)-0.5) );
108  TH1* den = new TH1F("lumidenom","lumidenom",NBins,-0.5, float(NBins)-0.5) ;
109 
110  for(int ibin = 1; ibin<NBins+1; ++ibin ) {
111  weights_->SetBinContent(ibin, Lumi_distr[ibin-1]);
112  Data_distr_->SetBinContent(ibin, Lumi_distr[ibin-1]);
113  den->SetBinContent(ibin,MC_distr[ibin-1]);
114  MC_distr_->SetBinContent(ibin,MC_distr[ibin-1]);
115  }
116 
117  // check integrals, make sure things are normalized
118 
119  float deltaH = weights_->Integral();
120  if(fabs(1.0 - deltaH) > 0.02 ) { //*OOPS*...
121  weights_->Scale( 1.0/ weights_->Integral() );
122  Data_distr_->Scale( 1.0/ Data_distr_->Integral() );
123  }
124  float deltaMC = den->Integral();
125  if(fabs(1.0 - deltaMC) > 0.02 ) {
126  den->Scale(1.0/ den->Integral());
127  MC_distr_->Scale(1.0/ MC_distr_->Integral());
128  }
129 
130  weights_->Divide( den ); // so now the average weight should be 1.0
131 
132  std::cout << " Lumi/Pileup Reweighting: Computed Weights per In-Time Nint " << std::endl;
133 
134  for(int ibin = 1; ibin<NBins+1; ++ibin){
135  std::cout << " " << ibin-1 << " " << weights_->GetBinContent(ibin) << std::endl;
136  }
137 
138  FirstWarning_ = true;
139  OldLumiSection_ = -1;
140 }
141 
142 double LumiReWeighting::weight( int npv ) {
143  int bin = weights_->GetXaxis()->FindBin( npv );
144  return weights_->GetBinContent( bin );
145 }
146 
147 double LumiReWeighting::weight( float npv ) {
148  int bin = weights_->GetXaxis()->FindBin( npv );
149  return weights_->GetBinContent( bin );
150 }
151 
152 
153 
154 // This version of weight does all of the work for you, assuming you want to re-weight
155 // using the true number of interactions in the in-time beam crossing.
156 
157 
159 
160  if(FirstWarning_) {
161  e.processHistory();
162  // SetFirstFalse();
163  FirstWarning_ = false;
164  }
166  e.getByLabel(pileupSumInfoTag_, PupInfo);
167 
168  std::vector<PileupSummaryInfo>::const_iterator PVI;
169 
170  int npv = -1;
171  for(PVI = PupInfo->begin(); PVI != PupInfo->end(); ++PVI) {
172 
173  int BX = PVI->getBunchCrossing();
174 
175  if(BX == 0) {
176  npv = PVI->getPU_NumInteractions();
177  continue;
178  }
179 
180  }
181 
182  if(npv < 0) std::cerr << " no in-time beam crossing found\n! " ;
183 
184  return weight(npv);
185 
186 }
187 
188 // Use this routine to re-weight out-of-time pileup to match the in-time distribution
189 // As of May 2011, CMS is only sensitive to a bunch that is 50ns "late", which corresponds to
190 // BunchCrossing +1. So, we use that here for re-weighting.
191 
193 
194 
195  //int Run = e.run();
196  int LumiSection = e.luminosityBlock();
197  // do some caching here, attempt to catch file boundaries
198 
199  if(LumiSection != OldLumiSection_){
200  e.processHistory(); // keep the function call
201  OldLumiSection_ = LumiSection;
202  }
203  // find the pileup summary information
204 
206  e.getByLabel(pileupSumInfoTag_, PupInfo);
207 
208  std::vector<PileupSummaryInfo>::const_iterator PVI;
209 
210  int npv = -1;
211  int npv50ns = -1;
212 
213  for(PVI = PupInfo->begin(); PVI != PupInfo->end(); ++PVI) {
214 
215  int BX = PVI->getBunchCrossing();
216 
217  if(BX == 0) {
218  npv = PVI->getPU_NumInteractions();
219  }
220 
221  if(BX == 1) {
222  npv50ns = PVI->getPU_NumInteractions();
223  }
224 
225  }
226 
227  // Note: for the "uncorrelated" out-of-time pileup, reweighting is only done on the 50ns
228  // "late" bunch (BX=+1), since that is basically the only one that matters in terms of
229  // energy deposition.
230 
231  if(npv < 0) {
232  std::cerr << " no in-time beam crossing found\n! " ;
233  std::cerr << " Returning event weight=0\n! ";
234  return 0.;
235  }
236  if(npv50ns < 0) {
237  std::cerr << " no out-of-time beam crossing found\n! " ;
238  std::cerr << " Returning event weight=0\n! ";
239  return 0.;
240  }
241 
242  int bin = weights_->GetXaxis()->FindBin( npv );
243 
244  double inTimeWeight = weights_->GetBinContent( bin );
245 
246  double TotalWeight = 1.0;
247 
248  TotalWeight = inTimeWeight;
249 
250  return TotalWeight;
251 
252 }
253 
254 #endif
virtual ProcessHistory const & processHistory() const =0
edm::LuminosityBlockNumber_t luminosityBlock() const
Definition: EventBase.h:61
boost::shared_ptr< TH1 > MC_distr_
double weight(int npv)
double weightOOT(const edm::EventBase &e)
boost::shared_ptr< TFile > dataFile_
edm::InputTag pileupSumInfoTag_
bin
set the eta bin as selection string.
boost::shared_ptr< TFile > generatedFile_
boost::shared_ptr< TH1 > Data_distr_
bool getByLabel(InputTag const &, Handle< T > &) const
Definition: EventBase.h:92
HLT enums.
boost::shared_ptr< TH1 > weights_
std::string generatedFileName_