1 /**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
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 **************************************************************************/
18 Revision 1.6 2006/04/20 22:30:49 hristov
19 Coding conventions (Annalisa)
21 Revision 1.5 2006/04/16 22:29:05 hristov
22 Coding conventions (Annalisa)
24 Revision 1.4 2006/04/05 08:35:38 hristov
25 Coding conventions (S.Arcelli, C.Zampolli)
27 Revision 1.3 2006/03/28 14:57:30 arcelli
28 updates to handle new V5 geometry & some re-arrangements
30 Revision 1.2 2006/02/13 17:22:26 arcelli
33 Revision 1.1 2006/02/13 16:10:48 arcelli
34 Add classes for TOF Calibration (C.Zampolli)
36 author: Chiara Zampolli, zampolli@bo.infn.it
39 ///////////////////////////////////////////////////////////////////////////////
41 // class for TOF calibration : PadZ //
43 ///////////////////////////////////////////////////////////////////////////////
49 #include "AliTOFCalPadZ.h"
50 #include "AliTOFChannel.h"
51 #include "AliTOFGeometryV5.h"
53 ClassImp(AliTOFCalPadZ)
55 //________________________________________________________________
57 AliTOFCalPadZ::AliTOFCalPadZ():
65 //________________________________________________________________
67 AliTOFCalPadZ::AliTOFCalPadZ(AliTOFChannel *ch):
74 //________________________________________________________________
76 AliTOFCalPadZ::AliTOFCalPadZ(AliTOFGeometry *geom):
81 //ctor with TOF geometry
84 fNpadX = fGeom->NpadX();
86 //________________________________________________________________
88 AliTOFCalPadZ::AliTOFCalPadZ(AliTOFGeometry *geom,AliTOFChannel *ch):
93 //ctor with TOF geometry and cal channel
95 fNpadX = fGeom->NpadX();
98 //________________________________________________________________
99 AliTOFCalPadZ::AliTOFCalPadZ(const AliTOFCalPadZ &source):
107 this->fGeom=source.fGeom;
111 //_____________________________________________________________________________
112 AliTOFCalPadZ& AliTOFCalPadZ::operator=(const AliTOFCalPadZ &source)
114 // assignment operator
116 this->fGeom=source.fGeom;
121 //________________________________________________________________
123 AliTOFCalPadZ::~AliTOFCalPadZ()
127 //________________________________________________________________
129 void AliTOFCalPadZ::Browse(TBrowser *b)
131 //Add cal object to browsable list
133 AliInfo("V5 TOF Geometry is taken as the default");
134 AliTOFGeometry *geom = new AliTOFGeometryV5();
135 fNpadX = geom->NpadX();
139 for(Int_t i=0; i<fNpadX; ++i) {
140 snprintf(name,sizeof(name),"PadX %2.2d",i);
141 b->Add(new AliTOFChannel(fCh[i]),name);