]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TOF/AliTOFCalPlateA.cxx
Changes for TOF Reconstruction using TGeo
[u/mrichter/AliRoot.git] / TOF / AliTOFCalPlateA.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$
18Revision 1.1 2006/02/13 16:10:48 arcelli
19Add classes for TOF Calibration (C.Zampolli)
20
6dc9348d 21author: Chiara Zampolli, zampolli@bo.infn.it
762446e0 22*/
6dc9348d 23
24///////////////////////////////////////////////////////////////////////////////
25// //
26// class for TOF calibration : PlateA //
27// //
28///////////////////////////////////////////////////////////////////////////////
29
30#include "TObject.h"
31#include "TROOT.h"
32#include "TBrowser.h"
33#include "TClass.h"
34#include "AliTOFGeometryV4.h"
35#include "AliTOFCalStrip.h"
36#include "AliTOFCalPlateA.h"
37#include "AliTOFChannel.h"
38
39ClassImp(AliTOFCalPlateA)
40
41//________________________________________________________________
42
43AliTOFCalPlateA::AliTOFCalPlateA(){
44 fCh = 0;
45 fNSector = AliTOFGeometryV4::NSectors();
46 fNPlate = AliTOFGeometryV4::NPlates();
47 fNStripA = AliTOFGeometryV4::NStripA();
48 fNStripB = AliTOFGeometryV4::NStripB();
49 fNStripC = 20;
50 // fNStripC = AliTOFGeometryV4::NStripC();
51 fNpadZ = AliTOFGeometryV4::NpadZ();
52 fNpadX = AliTOFGeometryV4::NpadX();
53}
54//________________________________________________________________
55
56AliTOFCalPlateA::AliTOFCalPlateA(AliTOFChannel *ch):
57 fCh(ch)
58{
59 fNSector = AliTOFGeometryV4::NSectors();
60 fNPlate = AliTOFGeometryV4::NPlates();
61 fNStripA = AliTOFGeometryV4::NStripA();
62 fNStripB = AliTOFGeometryV4::NStripB();
63 fNStripC = 20;
64 // fNStripC = AliTOFGeometryV4::NStripC();
65 fNpadZ = AliTOFGeometryV4::NpadZ();
66 fNpadX = AliTOFGeometryV4::NpadX();
67}
68//________________________________________________________________
69
70AliTOFCalPlateA::~AliTOFCalPlateA()
71{
72 delete[] fCh;
73}
74
75//________________________________________________________________
76
77AliTOFCalPlateA::AliTOFCalPlateA(const AliTOFCalPlateA& pl):
78 TObject(pl)
79 {
80 fCh = pl.fCh;
81 fCh = pl.fCh;
82 fNSector = pl.fNSector;
83 fNPlate = pl.fNPlate;
84 fNStripA = pl.fNStripA;
85 fNStripB = pl.fNStripB;
86 fNStripC = pl.fNStripC;
87 fNpadZ = pl.fNpadZ;
88 fNpadX = pl.fNpadX;
89
90 }
91//________________________________________________________________
92
93void AliTOFCalPlateA::Browse(TBrowser *b){
94
95 char name[10];
96 for(Int_t i=0; i<fNStripA; ++i) {
97 snprintf(name,sizeof(name),"Strip %2.2d",i);
98 b->Add(new AliTOFCalStrip(&fCh[i*fNpadZ*fNpadX]),name);
99 }
100}