]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWGLF/RESONANCES/AliRsnCutTOFMatch.h
st^Cic functions for p-value: cleanup and add all code that was used for approval
[u/mrichter/AliRoot.git] / PWGLF / RESONANCES / AliRsnCutTOFMatch.h
1 #ifndef ALIRSNCUTTOFMATCH_H
2 #define ALIRSNCUTTOFMATCH_H
3
4 //
5 // Class for TOF-matching cut.
6 // Author: Francesca Bellini (fbellini@cern.ch)
7
8 #include <TMath.h>
9 #include <TClonesArray.h>
10
11 #include "AliESDtrack.h"
12 #include "AliRsnCut.h"
13
14 class AliVTrack;
15
16 class AliRsnCutTOFMatch : public AliRsnCut {
17 public:
18
19    AliRsnCutTOFMatch();
20    AliRsnCutTOFMatch(const char *name);
21    virtual ~AliRsnCutTOFMatch() { }
22
23    Bool_t   MatchTOF(const AliVTrack *vtrack) const;
24    Bool_t   IsSelected(TObject *object);
25
26    ClassDef(AliRsnCutTOFMatch, 1)
27
28 };
29
30 #endif