]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TRD/AliTRDPhInfo.cxx
Fix Coverity defects
[u/mrichter/AliRoot.git] / TRD / AliTRDPhInfo.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: 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 ClassImp(AliTRDPhInfo)
30
31 //_____________________________________________________________________________
32 AliTRDPhInfo::AliTRDPhInfo()
33   :AliTRDUshortInfo()
34 {
35   //
36   // Default constructor
37   //
38
39 }
40 //_____________________________________________________________________________
41 AliTRDPhInfo::AliTRDPhInfo(Int_t n)
42   :AliTRDUshortInfo(n)
43 {
44   //
45   // Constructor that initializes a given size
46   //
47  
48 }
49 //_____________________________________________________________________________
50 AliTRDPhInfo::AliTRDPhInfo(const AliTRDPhInfo &c)
51   :AliTRDUshortInfo(c)
52 {
53   //
54   // AliTRDPhInfo copy constructor
55   //
56   
57 }
58 //_____________________________________________________________________________
59 AliTRDPhInfo::~AliTRDPhInfo()
60 {
61   //
62   // AliTRDPhInfo destructor
63   //
64
65   
66 }
67 //_____________________________________________________________________________
68 AliTRDPhInfo &AliTRDPhInfo::operator=(const AliTRDPhInfo &c)
69 {
70   //
71   // Assignment operator
72   //
73
74   if (this != &c) ((AliTRDPhInfo &) c).Copy(*this);
75   return *this;
76
77 }
78