Fork me on GitHub

source: git/modules/BTagging.h@ 9ca0c9c

ImprovedOutputFile Timing dual_readout llp
Last change on this file since 9ca0c9c was c5e72d8, checked in by Pavel Demin <pavel.demin@…>, 10 years ago

remove unneeded 'class DelphesFormula;' declarations and add ifndef expressions for CLING

  • Property mode set to 100644
File size: 988 bytes
Line 
1#ifndef BTagging_h
2#define BTagging_h
3
4/** \class BTagging
5 *
6 * Determines origin of jet,
7 * applies b-tagging efficiency (miss identification rate) formulas
8 * and sets b-tagging flags
9 *
10 * $Date$
11 * $Revision$
12 *
13 *
14 * \author P. Demin - UCL, Louvain-la-Neuve
15 *
16 */
17
18#include "classes/DelphesModule.h"
19
20#include <map>
21
22class TObjArray;
23class DelphesFormula;
24
25class ExRootFilter;
26class BTaggingPartonClassifier;
27
28class BTagging: public DelphesModule
29{
30public:
31
32 BTagging();
33 ~BTagging();
34
35 void Init();
36 void Process();
37 void Finish();
38
39private:
40
41 Int_t fBitNumber;
42
43 Double_t fDeltaR;
44
45#if !defined(__CINT__) && !defined(__CLING__)
46 std::map< Int_t, DelphesFormula * > fEfficiencyMap; //!
47#endif
48
49 BTaggingPartonClassifier *fClassifier; //!
50
51 ExRootFilter *fFilter;
52
53 TIterator *fItPartonInputArray; //!
54
55 TIterator *fItJetInputArray; //!
56
57 const TObjArray *fPartonInputArray; //!
58
59 const TObjArray *fJetInputArray; //!
60
61 ClassDef(BTagging, 1)
62};
63
64#endif
Note: See TracBrowser for help on using the repository browser.