]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliESDCaloTrigger.cxx
LUTs mapping symnames and original global matrices removed from AliGeomManager, which...
[u/mrichter/AliRoot.git] / STEER / AliESDCaloTrigger.cxx
CommitLineData
d5ebf00e 1/**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
6 * *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
15
16//-------------------------------------------------------------------------
17// Implementation of Class AliESDCaloTrigger
18// This is a class that summarizes the Trigger Data of EMCal and Phos
19// for the ESD
20// Origin: Christian Klein-Boesing, CERN, Christian.Klein-Boesing@cern.ch
21//-------------------------------------------------------------------------
22
23
24#include "AliESDCaloTrigger.h"
25
26ClassImp(AliESDCaloTrigger)
27
28AliESDCaloTrigger::AliESDCaloTrigger() :
29 TNamed(),
30 fTriggerAmplitudes(0x0),
31 fTriggerPosition(0x0)
32{
33}
34
35AliESDCaloTrigger::AliESDCaloTrigger(const AliESDCaloTrigger &ctrig) :
36 TNamed(ctrig),
37 fTriggerAmplitudes(ctrig.fTriggerAmplitudes),
38 fTriggerPosition(ctrig.fTriggerPosition)
39{
40}
41
42AliESDCaloTrigger::~AliESDCaloTrigger()
43{
44 delete fTriggerAmplitudes; fTriggerAmplitudes = 0;
45 delete fTriggerPosition; fTriggerPosition = 0;
46}
47
48AliESDCaloTrigger& AliESDCaloTrigger::operator=(const AliESDCaloTrigger& ctrig)
49{
50 // assigment operator
51 if(this!=&ctrig) {
52 TNamed::operator=(ctrig);
732a24fe 53 if(ctrig.fTriggerAmplitudes){
54 // asign or copy construct
55 if(fTriggerAmplitudes)*fTriggerAmplitudes = *ctrig.fTriggerAmplitudes;
56 else fTriggerAmplitudes = new TArrayF(*ctrig.fTriggerAmplitudes);
57 }
58 else{
59 delete fTriggerAmplitudes;
60 fTriggerAmplitudes = 0;
61 }
62
63 if(ctrig.fTriggerPosition){
64 // asign or copy construct
65 if(fTriggerPosition)*fTriggerPosition = *ctrig.fTriggerPosition;
66 else fTriggerPosition = new TArrayF(*ctrig.fTriggerPosition);
67 }
68 else{
69 delete fTriggerPosition;
70 fTriggerPosition = 0;
71 }
d5ebf00e 72 }
73 return *this;
74}
75
732a24fe 76void AliESDCaloTrigger::Copy(TObject &obj) const {
77
78 // this overwrites the virtual TOBject::Copy()
79 // to allow run time copying without casting
80 // in AliESDEvent
81
82 if(this==&obj)return;
83 AliESDCaloTrigger *robj = dynamic_cast<AliESDCaloTrigger*>(&obj);
84 if(!robj)return; // not an AliESDCaloTrigger
85 *robj = *this;
86
87}
88
89
d5ebf00e 90void AliESDCaloTrigger::Reset()
91{
92 // simple reset
93 if( fTriggerAmplitudes){
94 fTriggerAmplitudes->Reset();
95 }
96 if( fTriggerPosition){
97 fTriggerPosition->Reset();
98 }
99}
100
101