]> git.uio.no Git - u/mrichter/AliRoot.git/blob - RALICE/AliEvent.h
30-nov-2002 NvE Vertex position errors based on fResolution introduced in AliCollider...
[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.5 2002/10/28 14:41:34 nick Exp $
7
8 #include "Riostream.h"
9 #include <math.h>
10  
11 #include "TObject.h"
12 #include "TObjArray.h"
13 #include "TDatime.h"
14  
15 #include "AliVertex.h"
16 #include "AliCalorimeter.h"
17  
18 class AliEvent : public AliVertex
19 {
20  public:
21   AliEvent();                             // Default constructor
22   AliEvent(Int_t n);                      // Create an event to hold initially n tracks
23   ~AliEvent();                            // Default destructor
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   void HeaderInfo();                      // Print the event header information
43   void Info(TString f="car");             // Print the event info within coordinate frame f
44   void SetCalCopy(Int_t j);               // (De)activate creation of private copies in fCalorimeters
45   Int_t GetCalCopy();                     // Provide CalCopy flag value      
46   void AddCalorimeter(AliCalorimeter& c); // Add a calorimeter system to the event
47   void AddCalorimeter(AliCalorimeter* c) { AddCalorimeter(*c); }
48   Int_t GetNcalorimeters();               // Provide the number of calorimeter systems
49   AliCalorimeter* GetCalorimeter(Int_t i);// Provide i-th calorimeter system of the event
50   AliCalorimeter* GetCalorimeter(TString name); // Provide calorimeter with name "name"
51
52  protected:
53   TDatime fDaytime;         // The date and time stamp
54   Int_t fRun;               // The run number
55   Int_t fEvent;             // The event number
56   Int_t fAproj;             // The projectile A value
57   Int_t fZproj;             // The projectile Z value
58   Double_t fPnucProj;       // The projectile momentum per nucleon
59   Int_t fIdProj;            // User defined projectile particle ID
60   Int_t fAtarg;             // The target A value
61   Int_t fZtarg;             // The target Z value
62   Double_t fPnucTarg;       // The target momentum per nucleon
63   Int_t fIdTarg;            // User defined target particle ID
64   Int_t fNcals;             // The number of calorimeter systems 
65   TObjArray* fCalorimeters; // Array to hold the pointers to the calorimeter systems
66   Int_t fCalCopy;           // Flag to denote creation of private copies in fCalorimeters
67
68  ClassDef(AliEvent,4) // Creation and investigation of an Alice physics event.
69 };
70 #endif