]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TOF/AliTOFCalPlateC.cxx
Coding conventions (Annalisa)
[u/mrichter/AliRoot.git] / TOF / AliTOFCalPlateC.cxx
CommitLineData
6dc9348d 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
762446e0 16/*
17$Log$
0e46b9ae 18Revision 1.5 2006/04/16 22:29:05 hristov
19Coding conventions (Annalisa)
20
7aeeaf38 21Revision 1.4 2006/04/05 08:35:38 hristov
22Coding conventions (S.Arcelli, C.Zampolli)
23
340693af 24Revision 1.3 2006/03/28 14:57:56 arcelli
25updates to handle new V5 geometry & some re-arrangements
26
d4ad0d6b 27Revision 1.2 2006/02/13 17:22:26 arcelli
28just Fixing Log info
29
762446e0 30Revision 1.1 2006/02/13 16:10:48 arcelli
31Add classes for TOF Calibration (C.Zampolli)
32
6dc9348d 33author: Chiara Zampolli, zampolli@bo.infn.it
762446e0 34*/
6dc9348d 35
36///////////////////////////////////////////////////////////////////////////////
37// //
38// class for TOF calibration : PlateC //
39// //
40///////////////////////////////////////////////////////////////////////////////
41
6dc9348d 42#include "TBrowser.h"
0e46b9ae 43
d4ad0d6b 44#include "AliLog.h"
0e46b9ae 45
6dc9348d 46#include "AliTOFCalPlateC.h"
0e46b9ae 47#include "AliTOFCalStrip.h"
6dc9348d 48#include "AliTOFChannel.h"
0e46b9ae 49#include "AliTOFGeometryV5.h"
6dc9348d 50
51ClassImp(AliTOFCalPlateC)
52
53//________________________________________________________________
54
55AliTOFCalPlateC::AliTOFCalPlateC(){
340693af 56 //main ctor
6dc9348d 57 fCh = 0;
d4ad0d6b 58 fGeom= 0x0;
59 fNStripC = 0;
60 fNpadZ = 0;
61 fNpadX = 0;
6dc9348d 62}
63//________________________________________________________________
64
d4ad0d6b 65AliTOFCalPlateC::AliTOFCalPlateC(AliTOFChannel *ch) : fCh(ch)
66{
340693af 67 //ctor with channel
d4ad0d6b 68 fGeom= 0x0;
69 fNStripC = 0;
70 fNpadZ = 0;
71 fNpadX = 0;
72}
73//________________________________________________________________
74
75AliTOFCalPlateC::AliTOFCalPlateC(AliTOFGeometry *geom){
340693af 76 //ctor with geom
d4ad0d6b 77 fCh = 0;
78 fGeom = geom;
79 fNStripC = fGeom->NStripC();
80 fNpadZ = fGeom->NpadZ();
81 fNpadX = fGeom->NpadX();
82}
83//________________________________________________________________
6dc9348d 84
d4ad0d6b 85AliTOFCalPlateC::AliTOFCalPlateC(AliTOFGeometry *geom, AliTOFChannel *ch): fCh(ch)
86{
340693af 87 //ctor with channel and geom
d4ad0d6b 88 fGeom = geom;
89 fNStripC = fGeom->NStripC();
90 fNpadZ = fGeom->NpadZ();
91 fNpadX = fGeom->NpadX();
6dc9348d 92}
d4ad0d6b 93
6dc9348d 94//________________________________________________________________
95
7aeeaf38 96AliTOFCalPlateC& AliTOFCalPlateC::operator=(const AliTOFCalPlateC& pl)
97 {
98 //assignment operator
99 this->fCh = pl.fCh;
100 this->fNStripC = pl.fNStripC;
101 this->fNpadZ = pl.fNpadZ;
102 this->fNpadX = pl.fNpadX;
103 this->fGeom = pl.fGeom;
104 return *this;
105
106 }
107//________________________________________________________________
108
6dc9348d 109AliTOFCalPlateC::~AliTOFCalPlateC()
110{
340693af 111 //dtor
6dc9348d 112 delete[] fCh;
113}
114
115//________________________________________________________________
116
117AliTOFCalPlateC::AliTOFCalPlateC(const AliTOFCalPlateC& pl):
118 TObject(pl)
6dc9348d 119 {
340693af 120 //copy ctor
6dc9348d 121 fCh = pl.fCh;
6dc9348d 122 fNStripC = pl.fNStripC;
123 fNpadZ = pl.fNpadZ;
124 fNpadX = pl.fNpadX;
d4ad0d6b 125 fGeom = pl.fGeom;
6dc9348d 126
127 }
128//________________________________________________________________
129
130void AliTOFCalPlateC::Browse(TBrowser *b){
340693af 131 //add cal obj to list of browsables
6dc9348d 132
d4ad0d6b 133 if(fGeom==0x0){
134 AliTOFGeometry *geom = new AliTOFGeometryV5();
135 AliInfo("V5 TOF Geometry is taken as the default");
136 fNStripC = geom->NStripC();
137 fNpadZ = geom->NpadZ();
138 fNpadX = geom->NpadX();
139 delete geom;
140 }
6dc9348d 141 char name[10];
142 for(Int_t i=0; i<fNStripC; ++i) {
143 snprintf(name,sizeof(name),"Strip %2.2d",i);
144 b->Add(new AliTOFCalStrip(&fCh[i*fNpadZ*fNpadX]),name);
145 }
146}