Changes between Version 6 and Version 7 of DatabaseBasedAnalysis/Examples
- Timestamp:
- 08/12/18 14:03:57 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DatabaseBasedAnalysis/Examples
v6 v7 177 177 double of = h2area_of.Integral(x, x, 1, y); 178 178 179 h2area_sig.SetBinContent(x, y, Error(on, of));179 h2area_sig.SetBinContent(x, y, LiMa(on, of)); 180 180 } 181 181 … … 191 191 max); 192 192 } 193 194 clock.Print();195 193 196 194 h2area_on.SetStats(kFALSE); … … 232 230 #include <TGraph.h> 233 231 #include <TCanvas.h> 234 #include <TStopwatch.h>235 232 236 233 void optimdisp() … … 284 281 TH2F h2size( "H_Size", "", 30, 1.5, 4.5, 100, -2.5, 1.5); 285 282 286 // Loop over all wobble positions in the camera283 // Loop over all events 287 284 for (int i=0; i<c.GetEntries(); i++) 288 285 { … … 359 356 h2size.Fill(log10(Size), residual); 360 357 } 361 362 cout << hnew.GetBinContent(1) << endl;363 364 clock.Print();365 358 366 359 TCanvas *canv = new TCanvas;