]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG0/AliEmptySelector.h
replaced THXF to THX in many function prototypes
[u/mrichter/AliRoot.git] / PWG0 / AliEmptySelector.h
1 /* $Id$ */
2
3 #ifndef AliEmptySelector_H
4 #define AliEmptySelector_H
5
6 #include "AliSelector.h"
7
8 // this is an empty selector that can be used to create an analysis
9
10 class AliEmptySelector : public AliSelector {
11   public:
12     AliEmptySelector();
13     virtual ~AliEmptySelector();
14
15     virtual Bool_t  Process(Long64_t entry);
16
17  private:
18     AliEmptySelector(const AliEmptySelector&);
19     AliEmptySelector& operator=(const AliEmptySelector&);
20
21   ClassDef(AliEmptySelector, 0);
22 };
23
24 #endif