source: HiSusy/trunk/Delphes/Delphes-3.0.9/modules/BTagging.h @ 5

Last change on this file since 5 was 5, checked in by zerwas, 11 years ago

update to Delphes-3.0.9

File size: 991 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: 2013-04-26 12:39:14 +0200 (Fri, 26 Apr 2013) $
11 *  $Revision: 1099 $
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  std::map< Int_t, DelphesFormula * > fEfficiencyMap; //!
46 
47  BTaggingPartonClassifier *fClassifier; //!
48 
49  ExRootFilter *fFilter;
50
51  TIterator *fItPartonInputArray; //!
52 
53  TIterator *fItJetInputArray; //!
54
55  const TObjArray *fPartonInputArray; //!
56 
57  const TObjArray *fJetInputArray; //!
58
59  ClassDef(BTagging, 1)
60};
61
62#endif
Note: See TracBrowser for help on using the repository browser.