Line data Source code
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: AliTRDPhInfo.cxx 27946 2008-08-13 15:26:24Z cblume $ */
17 :
18 : ///////////////////////////////////////////////////////////////////////////////
19 : // //
20 : // Calibration base class for a single ROC //
21 : // Contains one UShort_t value per pad //
22 : // However, values are set and get as float, there are stored internally as //
23 : // (UShort_t) value * 10000 //
24 : // //
25 : ///////////////////////////////////////////////////////////////////////////////
26 :
27 : #include "AliTRDPhInfo.h"
28 :
29 48 : ClassImp(AliTRDPhInfo)
30 :
31 : //_____________________________________________________________________________
32 : AliTRDPhInfo::AliTRDPhInfo()
33 0 : :AliTRDUshortInfo()
34 0 : {
35 : //
36 : // Default constructor
37 : //
38 :
39 0 : }
40 : //_____________________________________________________________________________
41 : AliTRDPhInfo::AliTRDPhInfo(Int_t n)
42 0 : :AliTRDUshortInfo(n)
43 0 : {
44 : //
45 : // Constructor that initializes a given size
46 : //
47 :
48 0 : }
49 : //_____________________________________________________________________________
50 : AliTRDPhInfo::AliTRDPhInfo(const AliTRDPhInfo &c)
51 0 : :AliTRDUshortInfo(c)
52 0 : {
53 : //
54 : // AliTRDPhInfo copy constructor
55 : //
56 :
57 0 : }
58 : //_____________________________________________________________________________
59 : AliTRDPhInfo::~AliTRDPhInfo()
60 0 : {
61 : //
62 : // AliTRDPhInfo destructor
63 : //
64 :
65 :
66 0 : }
67 : //_____________________________________________________________________________
68 : AliTRDPhInfo &AliTRDPhInfo::operator=(const AliTRDPhInfo &c)
69 : {
70 : //
71 : // Assignment operator
72 : //
73 :
74 0 : if (this != &c) ((AliTRDPhInfo &) c).Copy(*this);
75 0 : return *this;
76 :
77 : }
78 :
|