]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSresponseSDD.cxx
minor changes to the "download code" part.
[u/mrichter/AliRoot.git] / ITS / AliITSresponseSDD.cxx
CommitLineData
b0f5e3fc 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#include <TMath.h>
17
18#include "AliITSgeom.h"
19#include "AliITSresponseSDD.h"
20#include "AliITS.h"
21#include "AliRun.h"
22
23class AliITS;
24
25//___________________________________________
26ClassImp(AliITSresponseSDD)
27
28AliITSresponseSDD::AliITSresponseSDD()
29{
30 // constructor
31 SetMaxAdc();
32 SetDiffCoeff();
33 SetQref();
34 SetDriftSpeed();
35 // SetClock();
36 SetNoiseParam();
37 SetMagicValue();
38 SetMinVal();
39 SetParamOptions();
40 SetZeroSupp();
41 SetDataType();
42 SetFilenames();
43 SetOutputOption();
44
45}
46
47//__________________________________________________________________________
48AliITSresponseSDD::AliITSresponseSDD(const AliITSresponseSDD &source){
49 // Copy Constructor
a6095b6a 50 Int_t i;
b0f5e3fc 51 if(&source == this) return;
7e2ac9e7 52 for(i=0;i<8;i++){this->fCPar[i] = source.fCPar[i];}
b0f5e3fc 53 this->fNoise = source.fNoise;
54 this->fBaseline = source.fBaseline;
55 this->fTopValue = source.fTopValue;
56 this->fTemperature = source.fTemperature;
57 this->fDriftSpeed = source.fDriftSpeed;
58 this->fMaxAdc = source.fMaxAdc;
59 this->fDiffCoeff = source.fDiffCoeff;
60 this->fQref = source.fQref;
61 this->fZeroSuppFlag = source.fZeroSuppFlag;
62 this->fMinVal = source.fMinVal;
63 this->fWrite = source.fWrite;
64 this->fOption = source.fOption;
65 this->fParam1 = source.fParam1;
66 return;
67}
68
69//_________________________________________________________________________
70AliITSresponseSDD&
71 AliITSresponseSDD::operator=(const AliITSresponseSDD &source) {
72 // Assignment operator
a6095b6a 73 Int_t i;
b0f5e3fc 74 if(&source == this) return *this;
7e2ac9e7 75 for(i=0;i<8;i++){this->fCPar[i] = source.fCPar[i];}
b0f5e3fc 76 this->fNoise = source.fNoise;
77 this->fBaseline = source.fBaseline;
78 this->fTopValue = source.fTopValue;
79 this->fTemperature = source.fTemperature;
80 this->fDriftSpeed = source.fDriftSpeed;
81 this->fMaxAdc = source.fMaxAdc;
82 this->fDiffCoeff = source.fDiffCoeff;
83 this->fQref = source.fQref;
84 this->fZeroSuppFlag = source.fZeroSuppFlag;
85 this->fMinVal = source.fMinVal;
86 this->fWrite = source.fWrite;
87 this->fOption = source.fOption;
88 this->fParam1 = source.fParam1;
89 return *this;
90}
91
92void AliITSresponseSDD::SetCompressParam(Int_t cp[8])
93{
94 // set compression param
95 Int_t i;
96 for(i=0; i<8; i++) {
97 fCPar[i]=cp[i];
98 //printf("\n CompressPar %d %d \n",i,fCPar[i]);
99
100 }
101}
102void AliITSresponseSDD::GiveCompressParam(Int_t cp[8])
103{
104 // give compression param
105 Int_t i;
106 for(i=0; i<8; i++) {
107 cp[i]=fCPar[i];
108 }
109}