]> git.uio.no Git - u/mrichter/AliRoot.git/blob - RALICE/AliEvent.h
07-oct-2003 NvE Arguments of SetSignal and AddSignal memberfunctions of AliCalmodule...
[u/mrichter/AliRoot.git] / RALICE / AliEvent.h
1 #ifndef ALIEVENT_H
2 #define ALIEVENT_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 // $Id: AliEvent.h,v 1.10 2003/08/29 09:05:11 nick Exp $
7
8 #include <math.h>
9  
10 #include "TObject.h"
11 #include "TObjArray.h"
12 #include "TDatime.h"
13  
14 #include "AliVertex.h"
15 #include "AliCalorimeter.h"
16  
17 class AliEvent : public AliVertex
18 {
19  public:
20   AliEvent();                             // Default constructor
21   AliEvent(Int_t n);                      // Create an event to hold initially n tracks
22   virtual ~AliEvent();                    // Default destructor
23   AliEvent(AliEvent& evt);                // Copy constructor
24   virtual void SetOwner(Bool_t own=kTRUE);// Set ownership of all added objects
25   void SetDayTime(TDatime& stamp);        // Set the date and time stamp
26   void SetRunNumber(Int_t run);           // Set the run number
27   void SetEventNumber(Int_t evt);         // Set the event number
28   void SetProjectile(Int_t a,Int_t z,Double_t pnuc,Int_t id=0); // Set projectile A, Z, p per nucleon and id
29   Int_t GetProjectileA();                 // Provide A value of the projectile
30   Int_t GetProjectileZ();                 // Provide Z value of the projectile
31   Double_t GetProjectilePnuc();           // Provide the projectile momentum value per nucleon
32   Int_t GetProjectileId();                // Provide the user defined particle ID of the projectile
33   void SetTarget(Int_t a,Int_t z,Double_t pnuc,Int_t id=0); // Set target A, Z, p per nucleon and id
34   Int_t GetTargetA();                     // Provide A value of the target
35   Int_t GetTargetZ();                     // Provide Z value of the target
36   Double_t GetTargetPnuc();               // Provide the target momentum value per nucleon
37   Int_t GetTargetId();                    // Provide the user defined particle ID of the target
38   void Reset();                           // Reset all values
39   TDatime GetDayTime();                   // Provide the date and time stamp
40   Int_t GetRunNumber();                   // Provide the run number
41   Int_t GetEventNumber();                 // Provide the event number
42   virtual void HeaderData();              // Print the event header information
43   virtual void Data(TString f="car");     // Print the event info within coordinate frame f
44   void SetDevCopy(Int_t j);               // (De)activate creation of private copies of the devices
45   Int_t GetDevCopy();                     // Provide DevCopy flag value      
46   void AddDevice(TObject& d);             // Add a device to the event
47   void AddDevice(TObject* d) { AddDevice(*d); }
48   Int_t GetNdevices();                    // Provide the number of devices
49   void ShowDevices();                     // Provide on overview of the available devices
50   TObject* GetDevice(Int_t i);            // Provide i-th device of the event
51   TObject* GetDevice(TString name);       // Provide device with name "name"
52
53  protected:
54   TDatime fDaytime;         // The date and time stamp
55   Int_t fRun;               // The run number
56   Int_t fEvent;             // The event number
57   Int_t fAproj;             // The projectile A value
58   Int_t fZproj;             // The projectile Z value
59   Double_t fPnucProj;       // The projectile momentum per nucleon
60   Int_t fIdProj;            // User defined projectile particle ID
61   Int_t fAtarg;             // The target A value
62   Int_t fZtarg;             // The target Z value
63   Double_t fPnucTarg;       // The target momentum per nucleon
64   Int_t fIdTarg;            // User defined target particle ID
65   TObjArray* fDevices;      // Array to hold the pointers to the various devices
66   Int_t fDevCopy;           // Flag to denote creation of private copies of the devices
67
68  ClassDef(AliEvent,9) // Creation and investigation of an Alice physics event.
69 };
70 #endif