]> git.uio.no Git - u/mrichter/AliRoot.git/blob - RALICE/icepack/IceEvent.h
Avoid linking with pythia.
[u/mrichter/AliRoot.git] / RALICE / icepack / IceEvent.h
1 #ifndef IceEvent_h
2 #define IceEvent_h
3
4 // Copyright(c) 2003, IceCube Experiment at the South Pole, All rights reserved.
5 // See cxx source for full Copyright notice.
6
7 // $Id$
8
9 #include "AliEvent.h"
10
11 class IceEvent : public AliEvent
12 {
13  public:
14   IceEvent();                                        // Default constructor
15   virtual ~IceEvent();                               // Default destructor
16   IceEvent(const IceEvent& evt);                     // Copy constructor
17   virtual TObject* Clone(const char* name="") const; // Make a deep copy and provide its pointer
18
19  ClassDef(IceEvent,1) // Handling of IceCube event data.
20 };
21 #endif