]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGGA/PHOSTasks/ClusterSelection/AliPHOSEventSelection.h
Fixed implimentation of ClusterSelection to be compilable.
[u/mrichter/AliRoot.git] / PWGGA / PHOSTasks / ClusterSelection / AliPHOSEventSelection.h
CommitLineData
857ed760
HQ
1#ifndef ALIPHOSEVENTSELECTION_CXX
2#define ALIPHOSEVENTSELECTION_CXX
3
4 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5 * See cxx source for full Copyright notice */
6
7// Class for selection of PHOS events, create a sub-class inheriting from
8// this class to customize your event selection logback using
9// AliPHOSClusterSelectionLogbackTask
10//
11// Uses IsEqual() to identify scope of Event selection!!! (Map from
12// EventSelection to Event cluster array)
13//
14// Authors : Henrik Qvigstad
15// Date : 16.01.2014
16/* $Id$ */
17
18
19class AliVEvent;
20class AliESDCaloEvent;
21class AliAODCaloEvent;
22
23#include "TObject.h"
24
25class AliPHOSEventSelection : TObject {
26 public:
27 AliPHOSEventSelection();
28 virtual ~AliPHOSEventSelection();
29
30 virtual Bool_t IsEqual(const TObject* obj) const; // recommended: reimplement
31 virtual ULong_t Hash() const;
32
33
34 protected:
35 AliPHOSEventSelection(const AliPHOSEventSelection&); // not implemented
36 AliPHOSEventSelection& operator=(const AliPHOSEventSelection&); // not implemented
37
38 ClassDef(AliPHOSEventSelection, 1);
39};
40
41#endif