]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TOF/AliTOFCalPadZ.cxx
Add classes for TOF Calibration (C.Zampolli)
[u/mrichter/AliRoot.git] / TOF / AliTOFCalPadZ.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 /*$Log$
17 author: Chiara Zampolli, zampolli@bo.infn.it
18  */  
19
20 ///////////////////////////////////////////////////////////////////////////////
21 //                                                                           //
22 // class for TOF calibration : PadZ                                          //
23 //                                                                           //
24 ///////////////////////////////////////////////////////////////////////////////
25
26 #include "TObject.h"
27 #include "TROOT.h"
28 #include "TBrowser.h"
29 #include "TClass.h"
30 #include "AliTOFGeometryV4.h"
31 #include "AliTOFChannel.h"
32 #include "AliTOFCalPadZ.h"
33
34 ClassImp(AliTOFCalPadZ)
35
36 //________________________________________________________________
37
38 AliTOFCalPadZ::AliTOFCalPadZ(){
39   fCh = 0;
40   fNSector = AliTOFGeometryV4::NSectors();
41   fNPlate = AliTOFGeometryV4::NPlates();
42   fNStripA = AliTOFGeometryV4::NStripA();
43   fNStripB = AliTOFGeometryV4::NStripB();
44   fNStripC = 20;
45   //  fNStripC = AliTOFGeometryV4::NStripC();
46   fNpadZ = AliTOFGeometryV4::NpadZ();
47   fNpadX = AliTOFGeometryV4::NpadX();
48
49 }
50 //________________________________________________________________
51
52 AliTOFCalPadZ::AliTOFCalPadZ(AliTOFChannel *ch):
53   fCh(ch)
54 {  
55   fNSector = AliTOFGeometryV4::NSectors();
56   fNPlate = AliTOFGeometryV4::NPlates();
57   fNStripA = AliTOFGeometryV4::NStripA();
58   fNStripB = AliTOFGeometryV4::NStripB();
59   //  fNStripC = AliTOFGeometryV4::NStripC();
60   fNStripC = 20;
61   fNpadZ = AliTOFGeometryV4::NpadZ();
62   fNpadX = AliTOFGeometryV4::NpadX();
63
64 }
65 //________________________________________________________________
66
67 AliTOFCalPadZ::~AliTOFCalPadZ()
68   {
69     delete[] fCh;
70   }
71 //________________________________________________________________
72
73 void AliTOFCalPadZ::Browse(TBrowser *b)
74 {
75   char name[10];
76   for(Int_t i=0; i<fNpadX; ++i) {
77     snprintf(name,sizeof(name),"PadX %2.2d",i);
78     b->Add(new AliTOFChannel(fCh[i]),name);
79   }
80 }