]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - EMCAL/AliEMCALTriggerPatch.cxx
fixes and extensions:
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALTriggerPatch.cxx
... / ...
CommitLineData
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
18
19
20Patch object implementation: one patch is made of subregions (Olivier's nomenclature)
21Author: R. GUERNANE LPSC Grenoble CNRS/IN2P3
22*/
23
24#include "AliEMCALTriggerPatch.h"
25#include "AliLog.h"
26
27ClassImp(AliEMCALTriggerPatch)
28
29//____________
30AliEMCALTriggerPatch::AliEMCALTriggerPatch() : TObject(),
31fPosition(0x0),
32fSum(0),
33fTime(0),
34fPeaks(0)
35{
36 // Default constructor
37}
38
39//____________
40AliEMCALTriggerPatch::AliEMCALTriggerPatch(Int_t i, Int_t j, Int_t k, Int_t l) : TObject(),
41fPosition(new TVector2(i, j)),
42fSum(k),
43fTime(l),
44fPeaks(0)
45{
46 //
47}
48
49//____________________________________________________________________
50AliEMCALTriggerPatch::AliEMCALTriggerPatch(const AliEMCALTriggerPatch& other) : TObject(other),
51fPosition(new TVector2(*other.fPosition)),
52fSum(other.fSum),
53fTime(other.fTime),
54fPeaks(other.fPeaks)
55{
56 // Copy ctor
57}
58
59//____________
60AliEMCALTriggerPatch::~AliEMCALTriggerPatch()
61{
62 //
63 if (fPosition) delete fPosition;
64}
65
66//____________
67void AliEMCALTriggerPatch::SetPeak(Int_t x, Int_t y, Int_t sizeX, Int_t sizeY)
68{
69 //
70 if (sizeX * sizeY > 31) AliError("32b limit exceeded!");
71
72 fPeaks = (fPeaks | (1 << (y * sizeX + x)));
73}
74
75//____________
76void AliEMCALTriggerPatch::Print(const Option_t*) const
77{
78 //
79 printf("]> Patch at (%2d , %2d) w/ sum %3d time %2d\n",
80 (int)fPosition->X(), (int)fPosition->Y(), fSum, fTime);
81}