]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/AliTRDPhInfo.cxx
Coding rules
[u/mrichter/AliRoot.git] / TRD / AliTRDPhInfo.cxx
CommitLineData
e526983e 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 <iostream>
28#include <fstream>
29#include <string>
30#include <TStyle.h>
31
32#include "AliTRDPhInfo.h"
33#include "TMath.h"
34#include "AliMathBase.h"
35#include "TLinearFitter.h"
36#include "TArrayI.h"
37#include "TH2F.h"
38#include "TH1F.h"
39#include "TArrayF.h"
40#include "TGraph2D.h"
41#include "TGraphDelaunay.h"
42#include "TList.h"
43
44#include "AliTRDCommonParam.h"
45#include "AliTRDpadPlane.h"
46#include "AliLog.h"
47
48ClassImp(AliTRDPhInfo)
49
50//_____________________________________________________________________________
51AliTRDPhInfo::AliTRDPhInfo()
52 :AliTRDUshortInfo()
53{
54 //
55 // Default constructor
56 //
57
58}
59//_____________________________________________________________________________
60AliTRDPhInfo::AliTRDPhInfo(Int_t n)
61 :AliTRDUshortInfo(n)
62{
63 //
64 // Constructor that initializes a given size
65 //
66
67}
68//_____________________________________________________________________________
69AliTRDPhInfo::AliTRDPhInfo(const AliTRDPhInfo &c)
70 :AliTRDUshortInfo(c)
71{
72 //
73 // AliTRDPhInfo copy constructor
74 //
75
76}
77//_____________________________________________________________________________
78AliTRDPhInfo::~AliTRDPhInfo()
79{
80 //
81 // AliTRDPhInfo destructor
82 //
83
84
85}
86//_____________________________________________________________________________
87AliTRDPhInfo &AliTRDPhInfo::operator=(const AliTRDPhInfo &c)
88{
89 //
90 // Assignment operator
91 //
92
93 if (this != &c) ((AliTRDPhInfo &) c).Copy(*this);
94 return *this;
95
96}
97