22 |
|
public: |
23 |
|
JetCleaningMod(const char *name="JetCleaningMod", |
24 |
|
const char *title="Jet cleaning module"); |
25 |
– |
~JetCleaningMod() {} |
25 |
|
|
26 |
< |
void SetCleanElectronsName(const char *name) { fCleanElectronsName = name; } |
27 |
< |
void SetCleanPhotonsName(const char *name) { fCleanPhotonsName = name; } |
28 |
< |
void SetGoodJetsName(const char *name) { fGoodJetsName = name; } |
29 |
< |
void SetCleanJetsName(const char *name) { fCleanJetsName = name; } |
30 |
< |
void SetMinDeltaRToElectron(const Double_t x) { fMinDeltaRToElectron = x; } |
31 |
< |
void SetMinDeltaRToPhoton(const Double_t x) { fMinDeltaRToPhoton = x; } |
26 |
> |
const char *GetCleanElectronsName() const { return fCleanElectronsName; } |
27 |
> |
const char *GetCleanJetsName() const { return fCleanJetsName; } |
28 |
> |
const char *GetCleanName() const { return GetCleanJetsName(); } |
29 |
> |
const char *GetCleanPhotonsName() const { return fCleanPhotonsName; } |
30 |
> |
const char *GetGoodJetsName() const { return fGoodJetsName; } |
31 |
> |
Double_t GetMinDeltaRToElectron() const { return fMinDeltaRToElectron; } |
32 |
> |
Double_t GetMinDeltaRToPhoton() const { return fMinDeltaRToPhoton; } |
33 |
> |
const char *GetOutputName() const { return GetCleanJetsName(); } |
34 |
> |
void SetCleanElectronsName(const char *name) { fCleanElectronsName = name; } |
35 |
> |
void SetCleanJetsName(const char *name) { fCleanJetsName = name; } |
36 |
> |
void SetCleanName(const char *name) { SetCleanJetsName(name); } |
37 |
> |
void SetCleanPhotonsName(const char *name) { fCleanPhotonsName = name; } |
38 |
> |
void SetGoodJetsName(const char *name) { fGoodJetsName = name; } |
39 |
> |
void SetMinDeltaRToElectron(Double_t dr) { fMinDeltaRToElectron = dr; } |
40 |
> |
void SetMinDeltaRToPhoton(Double_t dr) { fMinDeltaRToPhoton = dr; } |
41 |
> |
void SetOutputName(const char *name) { SetCleanJetsName(name); } |
42 |
|
|
43 |
|
protected: |
44 |
|
void Process(); |
50 |
|
Double_t fMinDeltaRToElectron; //delta R for separating electrons from jets |
51 |
|
Double_t fMinDeltaRToPhoton; //delta R for separating photons from jets |
52 |
|
|
53 |
< |
ClassDef(JetCleaningMod,1) // Jet cleaning module |
53 |
> |
ClassDef(JetCleaningMod, 1) // Jet cleaning module |
54 |
|
}; |
55 |
|
} |
56 |
|
#endif |