]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TOF/AliTOFChannelOnlineArray.cxx
Fixing putward propagation parameters to make the track loose energy.
[u/mrichter/AliRoot.git] / TOF / AliTOFChannelOnlineArray.cxx
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 // class for TOF Online calibration: defining channel delay                  //
19 // using an array instead of a TObjArray                                     //
20 //                                                                           //
21 ///////////////////////////////////////////////////////////////////////////////
22
23 #include <AliTOFChannelOnlineArray.h>
24 #include <AliLog.h>
25
26 ClassImp(AliTOFChannelOnlineArray)
27
28 //________________________________________________________________
29 AliTOFChannelOnlineArray::AliTOFChannelOnlineArray():
30         TObject(),
31         fSize(0),
32         fArray(0x0)
33 {
34         //default constructor
35 }
36 //________________________________________________________________
37 AliTOFChannelOnlineArray::~AliTOFChannelOnlineArray()
38 {
39         //distructor
40         delete [] fArray;
41 }
42 //________________________________________________________________
43 AliTOFChannelOnlineArray::AliTOFChannelOnlineArray(Int_t size):
44         TObject(),
45         fSize(size),
46         fArray(new Float_t[size])
47 {
48         // ctor with size
49         for (Int_t ich = 0; ich<size; ich ++){
50           SetDelay(ich,0);
51         }
52 }
53 //________________________________________________________________
54 AliTOFChannelOnlineArray::AliTOFChannelOnlineArray(const AliTOFChannelOnlineArray & source):
55   TObject(source),
56   fSize(source.fSize),
57   fArray(source.fArray)
58
59         // copy constructor
60 }
61 //________________________________________________________________
62 AliTOFChannelOnlineArray &AliTOFChannelOnlineArray::operator=(const AliTOFChannelOnlineArray & source) 
63
64   // assignment operator
65   
66   if (this == &source)
67     return *this;
68   
69   TObject::operator=(source);
70   fSize= source.fSize;
71   fArray= source.fArray;
72   return *this;
73 }
74 //________________________________________________________________
75 void AliTOFChannelOnlineArray::SetDelay(Int_t pos, Float_t parr)
76 {
77         // setting status for channel at position = pos
78         AliDebug(2,Form("status = %f",(Float_t)parr));
79         if (pos>-1 && pos < fSize)fArray[pos] = parr;
80         AliDebug(2,Form("fArray[%d] = %f",pos,(Float_t)fArray[pos]));
81 }
82 //________________________________________________________________
83 Float_t AliTOFChannelOnlineArray::GetDelay(Int_t pos) const 
84 {
85         // getting the status for channel at position = pos 
86         Float_t parr = 0x0; 
87         if  (pos>-1 && pos < fSize)parr = fArray[pos];
88         return parr;
89 }