]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG4/UserTasks/EmcalTasks/AliEmcalPhysicsSelection.h
Cosmetic
[u/mrichter/AliRoot.git] / PWG4 / UserTasks / EmcalTasks / AliEmcalPhysicsSelection.h
CommitLineData
be94a07d 1#ifndef ALIEMCALPHYSICSSELECTION_H
2#define ALIEMCALPHYSICSSELECTION_H
3
4// $Id$
5
6#include "AliPhysicsSelection.h"
7
8class AliEmcalPhysicsSelection: public AliPhysicsSelection
9{
10 public:
11 AliEmcalPhysicsSelection() : AliPhysicsSelection(), fExcludeFastOnly(0) {;}
12 virtual ~AliEmcalPhysicsSelection() {;}
13
14 virtual UInt_t GetSelectionMask(const TObject* obj);
15
16 void SetExcludeFastOnly(Bool_t b) { fExcludeFastOnly = b; }
17
18 protected:
19 Bool_t fExcludeFastOnly; //=true then exclude FastOnly events (only for LHC11a)
20
21 ClassDef(AliEmcalPhysicsSelection, 1); // My physics selection
22};
23#endif