]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliMCEvent.h
Coding rule violations fixed.
[u/mrichter/AliRoot.git] / STEER / AliMCEvent.h
CommitLineData
415d9f5c 1// -*- mode: C++ -*-
2#ifndef ALIMCEVENT_H
3#define ALIMCEVENT_H
4/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5 * See cxx source for full Copyright notice */
6
7
8/* $Id$ */
9
10//-------------------------------------------------------------------------
11// Class AliMCEvent
12//
13// Origin: Andreas.Morsch, CERN, andreas.morsch@cern.ch
14//-------------------------------------------------------------------------
15
16
17#include <TTree.h>
93df0e9b 18#include <TRefArray.h>
7aad0c47 19#include <TClonesArray.h>
415d9f5c 20
21#include <AliVEvent.h>
22#include "AliVHeader.h"
7aad0c47 23#include "AliVParticle.h"
5df3496b 24#include "AliVVertex.h"
415d9f5c 25#include "AliMCParticle.h"
26
befa9db4 27class AliCentrality;
ce7adfe9 28class AliEventplane;
415d9f5c 29class AliStack;
30class AliHeader;
31class AliGenEventHeader;
32
33class TClonesArray;
93836e1b 34class TList;
415d9f5c 35
36class AliMCEvent : public AliVEvent {
37
38public:
39
40 AliMCEvent();
41 virtual ~AliMCEvent() {;}
42 AliMCEvent(const AliMCEvent& mcEvnt);
43 AliMCEvent& operator=(const AliMCEvent& mcEvnt);
44 //
45 // Methods implementing the interface
46 //
47 // Services
48 virtual void AddObject(TObject* /*obj*/) {;}
2811495d 49 virtual TObject* FindListObject(const char */*name*/) const {return 0;}
415d9f5c 50 virtual TList* GetList() const {return 0;}
51 virtual void CreateStdContent() {;}
52 virtual void GetStdContent() {;}
1d0dd492 53 virtual void ReadFromTree(TTree * /*tree*/, Option_t* /*opt*/) {;}
ec8aded8 54 virtual void WriteToTree(TTree* /*tree*/) const {;}
415d9f5c 55
56 virtual void SetStdNames() {;}
57 virtual void Print(Option_t */*option=""*/) const {;}
35152e4b 58 virtual void PreReadAll();
ec8aded8 59 virtual void Reset() {;}
415d9f5c 60
61 // Header
62 virtual AliVHeader* GetHeader() const {return 0;}
63
64 // Delegated methods for fESDRun or AODHeader
65
66 virtual void SetRunNumber(Int_t /*n*/) {;}
67 virtual void SetPeriodNumber(UInt_t /*n*/) {;}
68 virtual void SetMagneticField(Double_t /*mf*/) {;}
69
70
71 virtual Int_t GetRunNumber() const {return 0;}
7aad0c47 72 virtual UInt_t GetPeriodNumber() const {return 0;}
415d9f5c 73 virtual Double_t GetMagneticField() const {return 0.;}
74
75 // Setters not needed
76 virtual void SetOrbitNumber(UInt_t /*n*/) {;}
77 virtual void SetBunchCrossNumber(UShort_t /*n*/) {;}
78 virtual void SetEventType(UInt_t /*eventType*/) {;}
79 virtual void SetTriggerMask(ULong64_t /*n*/) {;}
80 virtual void SetTriggerCluster(UChar_t /*n*/) {;}
81
7aad0c47 82 virtual UInt_t GetOrbitNumber() const {return 0;}
83 virtual UShort_t GetBunchCrossNumber() const {return 0;}
415d9f5c 84
7aad0c47 85 virtual UInt_t GetEventType() const {return 0;}
415d9f5c 86
a85132e7 87 virtual ULong64_t GetTriggerMask() const {return 0;}
88 virtual UChar_t GetTriggerCluster() const {return 0;}
89 virtual Double_t GetZDCN1Energy() const {return 0.;}
90 virtual Double_t GetZDCP1Energy() const {return 0.;}
91 virtual Double_t GetZDCN2Energy() const {return 0.;}
92 virtual Double_t GetZDCP2Energy() const {return 0.;}
eee13e8d 93 virtual Double_t GetZDCEMEnergy(Int_t /*i*/)
94 const {return 0.;}
415d9f5c 95 // Tracks
7aad0c47 96 virtual AliVParticle *GetTrack(Int_t i) const;
415d9f5c 97 virtual Int_t GetNumberOfTracks() const {return fNparticles;}
c1b93f02 98 virtual Int_t GetNumberOfV0s() const {return -1;}
bc0379e5 99 virtual Int_t GetNumberOfCascades() const {return -1;}
5df3496b 100 // Vertex
101 virtual const AliVVertex *GetPrimaryVertex() const;
102
415d9f5c 103 //
104 // MC Specific methods
105 //
106 // Getters
107 AliStack* Stack() {return fStack;}
108 AliHeader* Header() {return fHeader;}
5df3496b 109 AliGenEventHeader* GenEventHeader() const;
415d9f5c 110 // Services
111 virtual void ConnectTreeE (TTree* tree);
112 virtual void ConnectTreeK (TTree* tree);
113 virtual void ConnectTreeTR(TTree* tree);
114 virtual void Clean();
93836e1b 115 virtual void InitEvent();
415d9f5c 116 virtual void FinishEvent();
117 virtual Int_t GetParticleAndTR(Int_t i, TParticle*& particle, TClonesArray*& trefs);
118 virtual void DrawCheck(Int_t i, Int_t search);
93836e1b 119 virtual void AddSubsidiaryEvent(AliMCEvent* event);
120 virtual Int_t GetNumberOfPrimaries() {return fNprimaries;}
121 virtual Int_t GetPrimaryOffset() const {return fPrimaryOffset;}
122 virtual Int_t GetSecondaryOffset() const {return fSecondaryOffset;}
123 virtual void SetPrimaryOffset(Int_t ioff) {fPrimaryOffset = ioff;}
124 virtual void SetSecondaryOffset(Int_t ioff) {fSecondaryOffset = ioff;}
125 virtual Bool_t IsPhysicalPrimary(Int_t i);
126 virtual Int_t BgLabelToIndex(Int_t label);
127 static Int_t BgLabelOffset() {return fgkBgLabelOffset;}
7aad0c47 128 // External particle array
129 virtual void SetParticleArray(TClonesArray* mcParticles)
130 {fMCParticles = mcParticles; fNparticles = fMCParticles->GetEntries(); fExternal = kTRUE;}
131
c8fe2783 132 //Following needed only for mixed event
133 virtual Int_t EventIndex(Int_t) const {return 0;}
134 virtual Int_t EventIndexForCaloCluster(Int_t) const {return 0;}
135 virtual Int_t EventIndexForPHOSCell(Int_t) const {return 0;}
136 virtual Int_t EventIndexForEMCALCell(Int_t) const {return 0;}
befa9db4 137 AliCentrality* GetCentrality() {return 0;}
ce7adfe9 138 AliEventplane* GetEventplane() {return 0;}
ae2bccf1 139
140 virtual AliVVZERO *GetVZEROData() const {return 0;}
415d9f5c 141private:
142 virtual void ReorderAndExpandTreeTR();
93836e1b 143 virtual Int_t FindIndexAndEvent(Int_t oldidx, AliMCEvent*& event) const;
befa9db4 144
93836e1b 145private:
7aad0c47 146 // Stanndard implementation for ESD production
93836e1b 147 AliStack *fStack; // Current pointer to stack
148 TClonesArray *fMCParticles; // Pointer to list of particles
091fa189 149 TObjArray *fMCParticleMap; // Map of MC Particles
93836e1b 150 AliHeader *fHeader; // Current pointer to header
151 TClonesArray *fTRBuffer; // Track reference buffer
152 TClonesArray *fTrackReferences; // Array of track references
153 TTree *fTreeTR; // Pointer to Track Reference Tree
154 TTree *fTmpTreeTR; // Temporary tree TR to read old format
155 TFile *fTmpFileTR; // Temporary file with TreeTR to read old format
156 Int_t fNprimaries; // Number of primaries
157 Int_t fNparticles; // Number of particles
158 TList *fSubsidiaryEvents; // List of possible subsidiary events (for example merged underlying event)
159 Int_t fPrimaryOffset; // Offset for primaries
160 Int_t fSecondaryOffset; // Offset for secondaries
7aad0c47 161 Bool_t fExternal; // True if external particle array
5df3496b 162 static Int_t fgkBgLabelOffset; // Standard branch name
163 mutable AliVVertex* fVertex; // MC Vertex
e337635e 164 ClassDef(AliMCEvent, 1) // AliVEvent realisation for MC data
415d9f5c 165};
166
167
168#endif
169