]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliESDCaloTrigger.h
- Protection added for null or empty input chains
[u/mrichter/AliRoot.git] / STEER / AliESDCaloTrigger.h
CommitLineData
d5ebf00e 1// -*- mode: C++ -*-
2#ifndef ALIESDCALOTRIGGER_H
3#define ALIESDCALOTRIGGER_H
4
5
6/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
7 * See cxx source for full Copyright notice */
8
9
10//-------------------------------------------------------------------------
11// Class AliESDCaloTrigger
12// This is a class that summarizes the Trigger Data of EMCal and Phos
13// for the ESD
14// Origin: Christian Klein-Boesing, CERN, Christian.Klein-Boesing@cern.ch
15//-------------------------------------------------------------------------
16
17
18
19#include <TNamed.h>
20#include <TArrayF.h>
21
22
23
24
25class AliESDCaloTrigger : public TNamed {
26public:
27 AliESDCaloTrigger();
28 AliESDCaloTrigger(const AliESDCaloTrigger& ctrig);
29 AliESDCaloTrigger& operator=(const AliESDCaloTrigger& ctrig);
30 virtual ~AliESDCaloTrigger();
31
32 // does this create mem leak? CKB use new with placement?
17773e2e 33 void AddTriggerPosition(const TArrayF & array) {
34 if(fTriggerPosition) delete fTriggerPosition;
35 fTriggerPosition = new TArrayF(array);
36 }
37
38 void AddTriggerAmplitudes(const TArrayF & array) {
39 if(fTriggerAmplitudes)delete fTriggerAmplitudes;
40 fTriggerAmplitudes = new TArrayF(array);
41 }
d5ebf00e 42
43 void Reset();
44
45 TArrayF* GetTriggerPosition() {return fTriggerPosition;}
46 TArrayF* GetTriggerAmplitudes() {return fTriggerPosition;}
47
48
49private:
50
51 TArrayF *fTriggerAmplitudes; // Amplitude of PHOS or EMCal Trigger
52 TArrayF *fTriggerPosition; // Position of PHOS or EMCal Trigger
53
54 ClassDef(AliESDCaloTrigger,1)
55};
56
57
58#endif
59