]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TOF/AliTOFChannelOnlineArray.cxx
54b23cf4a0f80b42e4677bac393d77fb69ea86f0
[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(),
56       fSize(0),
57       fArray(0x0)
58
59         // copy constructor
60         this->fSize= source.fSize;
61         this->fArray= source.fArray;
62 }
63 //________________________________________________________________
64 AliTOFChannelOnlineArray &AliTOFChannelOnlineArray::operator=(const AliTOFChannelOnlineArray & source) 
65
66         // assignment operator
67         this->fSize= source.fSize;
68         this->fArray= source.fArray;
69         return *this;
70 }
71 //________________________________________________________________
72 void AliTOFChannelOnlineArray::SetDelay(Int_t pos, Float_t parr)
73 {
74         // setting status for channel at position = pos
75         AliDebug(2,Form("status = %d",(Float_t)parr));
76         if (pos>-1 && pos < fSize)fArray[pos] = parr;
77         AliDebug(2,Form("fArray[%d] = %d",pos,(Float_t)fArray[pos]));
78 }
79 //________________________________________________________________
80 Float_t AliTOFChannelOnlineArray::GetDelay(Int_t pos) const 
81 {
82         // getting the status for channel at position = pos 
83         Float_t parr = 0x0; 
84         if  (pos>-1 && pos < fSize)parr = fArray[pos];
85         return parr;
86 }