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