]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TRD/Cal/AliTRDCalMCMStatus.cxx
Removing obsolete macro
[u/mrichter/AliRoot.git] / TRD / Cal / AliTRDCalMCMStatus.cxx
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 /* $Id$ */
17
18 ///////////////////////////////////////////////////////////////////////////////
19 //                                                                           //
20 //  TRD calibration class for MCM status                                     //
21 //                                                                           //
22 ///////////////////////////////////////////////////////////////////////////////
23
24 #include "AliTRDCalMCMStatus.h"
25 #include "AliTRDCalSingleChamberStatus.h"
26
27 ClassImp(AliTRDCalMCMStatus)
28
29 //_____________________________________________________________________________
30 AliTRDCalMCMStatus::AliTRDCalMCMStatus():TNamed()
31 {
32   //
33   // AliTRDCalMCMStatus default constructor
34   //
35
36   for (Int_t idet = 0; idet < kNdet; idet++) {
37     fROC[idet] = 0;
38   }
39
40 }
41
42 //_____________________________________________________________________________
43 AliTRDCalMCMStatus::AliTRDCalMCMStatus(const Text_t *name, const Text_t *title)
44                 :TNamed(name,title)
45 {
46   //
47   // AliTRDCalMCMStatus constructor
48   //
49
50   for (Int_t isec = 0; isec < kNsect; isec++) {
51     for (Int_t ipla = 0; ipla < kNplan; ipla++) {
52       for (Int_t icha = 0; icha < kNcham; icha++) {
53         Int_t idet = AliTRDgeometry::GetDetector(ipla,icha,isec);
54         fROC[idet] = new AliTRDCalSingleChamberStatus(ipla,icha,8);
55       }
56     }
57   }
58
59 }
60
61
62 //_____________________________________________________________________________
63 AliTRDCalMCMStatus::AliTRDCalMCMStatus(const AliTRDCalMCMStatus &c):TNamed(c)
64 {
65   //
66   // AliTRDCalMCMStatus copy constructor
67   //
68
69   ((AliTRDCalMCMStatus &) c).Copy(*this);
70
71 }
72
73 ///_____________________________________________________________________________
74 AliTRDCalMCMStatus::~AliTRDCalMCMStatus()
75 {
76   //
77   // AliTRDCalMCMStatus destructor
78   //
79
80   for (Int_t idet = 0; idet < kNdet; idet++) {
81     if (fROC[idet]) {
82       delete fROC[idet];
83       fROC[idet] = 0;
84     }
85   }
86
87 }
88
89 //_____________________________________________________________________________
90 AliTRDCalMCMStatus &AliTRDCalMCMStatus::operator=(const AliTRDCalMCMStatus &c)
91 {
92   //
93   // Assignment operator
94   //
95
96   if (this != &c) ((AliTRDCalMCMStatus &) c).Copy(*this);
97   return *this;
98
99 }
100
101 //_____________________________________________________________________________
102 void AliTRDCalMCMStatus::Copy(TObject &c) const
103 {
104   //
105   // Copy function
106   //
107
108   for (Int_t idet = 0; idet < kNdet; idet++) {
109     if (fROC[idet]) {
110       fROC[idet]->Copy(*((AliTRDCalMCMStatus &) c).fROC[idet]);
111     }
112   }
113
114   TObject::Copy(c);
115 }
116