]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGLF/RESONANCES/AliRsnCutTOFMatch.h
Fixed monitoring histogram ranges
[u/mrichter/AliRoot.git] / PWGLF / RESONANCES / AliRsnCutTOFMatch.h
CommitLineData
9cdd5474 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
14class AliVTrack;
15
16class 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