]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG2/RESONANCES/AliRsnCutValue.h
Some bug fixes, removal of some duplicates and clarified the logic of some pieces...
[u/mrichter/AliRoot.git] / PWG2 / RESONANCES / AliRsnCutValue.h
1 //
2 // *** Class AliRsnCutValue ***
3 //
4 // This cut implementation can be used to cut generically on
5 // any value which can be computed from AliRsnValue class.
6 // Since that value is implemented always as a Double_t one,
7 // then this cut operates only with the Double_t data members
8 // of the AliRsnCut base class.
9 // It allows to customize the reference AliRsnValue object by
10 // means of a getter that returns a pointer to it.
11 // This cut can apply to any kind of object, but the type of
12 // target must be one of those for which the chosen value type
13 // makes sense to be computed
14 //
15 // author: Alberto Pulvirenti (alberto.pulvirenti@ct.infn.it)
16 //
17
18 #ifndef ALIRSNCUTVALUE_H
19 #define ALIRSNCUTVALUE_H
20
21 #include "AliRsnCut.h"
22 #include "AliRsnValue.h"
23
24 class AliRsnCutValue : public AliRsnCut {
25 public:
26
27    AliRsnCutValue();
28    AliRsnCutValue(const char *name, Double_t min, Double_t max);
29    AliRsnCutValue(const AliRsnCutValue& copy);
30    AliRsnCutValue& operator=(const AliRsnCutValue& copy);
31    virtual ~AliRsnCutValue() { }
32
33    Double_t       GetComputedValue()              {if (fValue) return fValue->GetComputedValue(); return -1E20;}
34    AliRsnValue*   GetValueObj()                   {return fValue;}
35    void           SetValueObj(AliRsnValue *value) {fValue = value; SetTargetType(value->GetTargetType());}
36
37    virtual Bool_t IsSelected(TObject *object);
38    virtual void   Print(const Option_t *option = "") const;
39
40 protected:
41
42    AliRsnValue *fValue;
43
44    ClassDef(AliRsnCutValue, 1)
45 };
46
47 #endif