ROOT logo
/**************************************************************************
 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
 *                                                                        *
 * Author: The ALICE Off-line Project.                                    *
 * Contributors are mentioned in the code where appropriate.              *
 *                                                                        *
 * Permission to use, copy, modify and distribute this software and its   *
 * documentation strictly for non-commercial purposes is hereby granted   *
 * without fee, provided that the above copyright notice appears in all   *
 * copies and that both the copyright notice and this permission notice   *
 * appear in the supporting documentation. The authors make no claims     *
 * about the suitability of this software for any purpose. It is          *
 * provided "as is" without express or implied warranty.                  *
 **************************************************************************/

/* $Id: AliTRDPhInfo.cxx 27946 2008-08-13 15:26:24Z cblume $ */

///////////////////////////////////////////////////////////////////////////////
//                                                                           //
//  Calibration base class for a single ROC                                  //
//  Contains one UShort_t value per pad                                      //
//  However, values are set and get as float, there are stored internally as //
//  (UShort_t) value * 10000                                                 //
//                                                                           //
///////////////////////////////////////////////////////////////////////////////

#include "AliTRDPhInfo.h"

ClassImp(AliTRDPhInfo)

//_____________________________________________________________________________
AliTRDPhInfo::AliTRDPhInfo()
  :AliTRDUshortInfo()
{
  //
  // Default constructor
  //

}
//_____________________________________________________________________________
AliTRDPhInfo::AliTRDPhInfo(Int_t n)
  :AliTRDUshortInfo(n)
{
  //
  // Constructor that initializes a given size
  //
 
}
//_____________________________________________________________________________
AliTRDPhInfo::AliTRDPhInfo(const AliTRDPhInfo &c)
  :AliTRDUshortInfo(c)
{
  //
  // AliTRDPhInfo copy constructor
  //
  
}
//_____________________________________________________________________________
AliTRDPhInfo::~AliTRDPhInfo()
{
  //
  // AliTRDPhInfo destructor
  //

  
}
//_____________________________________________________________________________
AliTRDPhInfo &AliTRDPhInfo::operator=(const AliTRDPhInfo &c)
{
  //
  // Assignment operator
  //

  if (this != &c) ((AliTRDPhInfo &) c).Copy(*this);
  return *this;

}

 AliTRDPhInfo.cxx:1
 AliTRDPhInfo.cxx:2
 AliTRDPhInfo.cxx:3
 AliTRDPhInfo.cxx:4
 AliTRDPhInfo.cxx:5
 AliTRDPhInfo.cxx:6
 AliTRDPhInfo.cxx:7
 AliTRDPhInfo.cxx:8
 AliTRDPhInfo.cxx:9
 AliTRDPhInfo.cxx:10
 AliTRDPhInfo.cxx:11
 AliTRDPhInfo.cxx:12
 AliTRDPhInfo.cxx:13
 AliTRDPhInfo.cxx:14
 AliTRDPhInfo.cxx:15
 AliTRDPhInfo.cxx:16
 AliTRDPhInfo.cxx:17
 AliTRDPhInfo.cxx:18
 AliTRDPhInfo.cxx:19
 AliTRDPhInfo.cxx:20
 AliTRDPhInfo.cxx:21
 AliTRDPhInfo.cxx:22
 AliTRDPhInfo.cxx:23
 AliTRDPhInfo.cxx:24
 AliTRDPhInfo.cxx:25
 AliTRDPhInfo.cxx:26
 AliTRDPhInfo.cxx:27
 AliTRDPhInfo.cxx:28
 AliTRDPhInfo.cxx:29
 AliTRDPhInfo.cxx:30
 AliTRDPhInfo.cxx:31
 AliTRDPhInfo.cxx:32
 AliTRDPhInfo.cxx:33
 AliTRDPhInfo.cxx:34
 AliTRDPhInfo.cxx:35
 AliTRDPhInfo.cxx:36
 AliTRDPhInfo.cxx:37
 AliTRDPhInfo.cxx:38
 AliTRDPhInfo.cxx:39
 AliTRDPhInfo.cxx:40
 AliTRDPhInfo.cxx:41
 AliTRDPhInfo.cxx:42
 AliTRDPhInfo.cxx:43
 AliTRDPhInfo.cxx:44
 AliTRDPhInfo.cxx:45
 AliTRDPhInfo.cxx:46
 AliTRDPhInfo.cxx:47
 AliTRDPhInfo.cxx:48
 AliTRDPhInfo.cxx:49
 AliTRDPhInfo.cxx:50
 AliTRDPhInfo.cxx:51
 AliTRDPhInfo.cxx:52
 AliTRDPhInfo.cxx:53
 AliTRDPhInfo.cxx:54
 AliTRDPhInfo.cxx:55
 AliTRDPhInfo.cxx:56
 AliTRDPhInfo.cxx:57
 AliTRDPhInfo.cxx:58
 AliTRDPhInfo.cxx:59
 AliTRDPhInfo.cxx:60
 AliTRDPhInfo.cxx:61
 AliTRDPhInfo.cxx:62
 AliTRDPhInfo.cxx:63
 AliTRDPhInfo.cxx:64
 AliTRDPhInfo.cxx:65
 AliTRDPhInfo.cxx:66
 AliTRDPhInfo.cxx:67
 AliTRDPhInfo.cxx:68
 AliTRDPhInfo.cxx:69
 AliTRDPhInfo.cxx:70
 AliTRDPhInfo.cxx:71
 AliTRDPhInfo.cxx:72
 AliTRDPhInfo.cxx:73
 AliTRDPhInfo.cxx:74
 AliTRDPhInfo.cxx:75
 AliTRDPhInfo.cxx:76
 AliTRDPhInfo.cxx:77
 AliTRDPhInfo.cxx:78