Revision: | 1.1 |
Committed: | Wed Jun 1 12:38:07 2011 UTC (13 years, 11 months ago) by mzanetti |
Content type: | text/plain |
Branch: | MAIN |
CVS Tags: | Mit_029c, Mit_029b, Mit_029a, Mit_028a, Mit_028, Mit_027, Mit_027a, Mit_025e, Mit_025d, Mit_025c, Mit_025b, Mit_025a, Mit_025, Mit_025pre2, Mit_024b, Mit_025pre1, Mit_024a, Mit_024, Mit_023, Mit_022a, Mit_022, HEAD |
Log Message: | typo in the name of the previous file |
# | User | Rev | Content |
---|---|---|---|
1 | mzanetti | 1.1 | //-------------------------------------------------------------------------------------------------- |
2 | // $Id: | ||
3 | // | ||
4 | // PUReweighting | ||
5 | // | ||
6 | // Authors: M. Zanetti | ||
7 | //-------------------------------------------------------------------------------------------------- | ||
8 | |||
9 | #ifndef MITPHYSICS_UTILS_PUREWEIGHTING_H | ||
10 | #define MITPHYSICS_UTILS_PUREWEIGHTING_H | ||
11 | |||
12 | #include "MitAna/DataTree/interface/PileupInfoCol.h" | ||
13 | #include <TH1F.h> | ||
14 | |||
15 | namespace mithep { | ||
16 | |||
17 | class PUReweighting { | ||
18 | |||
19 | public: | ||
20 | |||
21 | PUReweighting(const char* fileName, const char* histoName); | ||
22 | |||
23 | ~PUReweighting() {} | ||
24 | |||
25 | double reweightOOT(int inTimePUMultiplicity, int outOfTimePUMultiplicity); | ||
26 | |||
27 | private: | ||
28 | TH1F * referenceHisto; | ||
29 | |||
30 | |||
31 | ClassDef(PUReweighting, 0) // PUReweighting | ||
32 | }; | ||
33 | |||
34 | |||
35 | } | ||
36 | |||
37 | #endif |