]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TOF/AliTOFCalStrip.cxx
Changes for TOF Reconstruction using TGeo
[u/mrichter/AliRoot.git] / TOF / AliTOFCalStrip.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 : strips //
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 "AliTOFChannel.h"
36#include "AliTOFCalStrip.h"
37#include "AliTOFCalPadZ.h"
38
39ClassImp(AliTOFCalStrip)
40
41//________________________________________________________________
42
43AliTOFCalStrip::AliTOFCalStrip(){
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
56AliTOFCalStrip::AliTOFCalStrip(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//________________________________________________________________
70
71AliTOFCalStrip::~AliTOFCalStrip()
72{
73 delete[] fCh;
74}
75
76//________________________________________________________________
77
78AliTOFCalStrip::AliTOFCalStrip(const AliTOFCalStrip& strip):
79 TObject(strip)
80 {
81 fCh = strip.fCh;
82 fNSector = strip.fNSector;
83 fNPlate = strip.fNPlate;
84 fNStripA = strip.fNStripA;
85 fNStripB = strip.fNStripB;
86 fNStripC = strip.fNStripC;
87 fNpadZ = strip.fNpadZ;
88 fNpadX = strip.fNpadX;
89
90 }
91//________________________________________________________________
92
93void AliTOFCalStrip::Browse(TBrowser *b){
94
95 char name[10];
96 for(Int_t i=0; i<fNpadZ; ++i) {
97 snprintf(name,sizeof(name),"PadZ %2.2d",i);
98 b->Add(new AliTOFCalPadZ(&fCh[i*fNpadX]),name);
99 }
100}