/************************************************************************** * 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$ */ #include #include #include "AliITSresponseSDD.h" ////////////////////////////////////////////////// // Response class for set:ITS // // Specific subdetector implementation // // for silicon drift detectors // // // // // ////////////////////////////////////////////////////// const Int_t AliITSresponseSDD::fgkWings; const Int_t AliITSresponseSDD::fgkChips; const Int_t AliITSresponseSDD::fgkChannels; const Int_t AliITSresponseSDD::fgkMaxAdcDefault = 1024; const Double_t AliITSresponseSDD::fgkDynamicRangeDefault = 132.; const Double_t AliITSresponseSDD::fgkfChargeLossDefault = 0; const Double_t AliITSresponseSDD::fgkDiffCoeffDefault = 3.23; const Double_t AliITSresponseSDD::fgkDiffCoeff1Default = 30.; const Double_t AliITSresponseSDD::fgkTemperatureDefault = 296.; const TString AliITSresponseSDD::fgkParam1Default = "same"; const TString AliITSresponseSDD::fgkParam2Default = "same"; const Double_t AliITSresponseSDD::fgkNoiseDefault = 10.; const Double_t AliITSresponseSDD::fgkBaselineDefault = 20.; const TString AliITSresponseSDD::fgkOptionDefault = "1D"; const Double_t AliITSresponseSDD::fgkMinValDefault = 4; const Double_t AliITSresponseSDD::fgkDriftSpeedDefault = 7.3; const Double_t AliITSresponseSDD::fgkNsigmasDefault = 3.; const Int_t AliITSresponseSDD::fgkNcompsDefault = 121; //______________________________________________________________________ ClassImp(AliITSresponseSDD) AliITSresponseSDD::AliITSresponseSDD(){ // default constructor fGaus = 0; SetDeadChannels(); SetMaxAdc(fgkMaxAdcDefault); SetDiffCoeff(fgkDiffCoeffDefault,fgkDiffCoeff1Default); SetDriftSpeed(fgkDriftSpeedDefault); SetNSigmaIntegration(fgkNsigmasDefault); SetNLookUp(fgkNcompsDefault); // SetClock(); for(Int_t i=0;i 255) { Warning("Convert8to10","out of range signal=%d",signal); return 0; } // end if signal <0 || signal >255 if (signal < 128) return signal; if (signal < 192) { if (TMath::Odd(signal)) return (128+((signal-128)<<1)); else return (128+((signal-128)<<1)+1); } // end if signal < 192 if (signal < 224) { if (TMath::Odd(signal)) return (256+((signal-192)<<3)+3); else return (256+((signal-192)<<3)+4); } // end if signal < 224 if (TMath::Odd(signal)) return (512+((signal-224)<<4)+7); return (512+((signal-224)<<4)+8); } else { return signal; } } //______________________________________________________________________ void AliITSresponseSDD::SetCompressParam(Int_t cp[8]){ // set compression param Int_t i; for (i=0; i<8; i++) { fCPar[i]=cp[i]; //printf("\n CompressPar %d %d \n",i,fCPar[i]); } // end for i } //______________________________________________________________________ void AliITSresponseSDD::GiveCompressParam(Int_t cp[8]) const { // give compression param Int_t i; for (i=0; i<8; i++) { cp[i]=fCPar[i]; } // end for i } //______________________________________________________________________ void AliITSresponseSDD::SetNLookUp(Int_t p1){ // Set number of sigmas over which cluster disintegration is performed fNcomps=p1; fGaus = new TArrayF(fNcomps+1); for(Int_t i=0; i<=fNcomps; i++) { Double_t x = -fNsigmas + (2.*i*fNsigmas)/(fNcomps-1); (*fGaus)[i] = exp(-((x*x)/2)); // cout << "fGaus[" << i << "]: " << fGaus->At(i) << endl; } } //______________________________________________________________________ void AliITSresponseSDD::SetDeadChannels(Int_t nchip, Int_t nchan){ // Set fGain to zero to simulate a random distribution of // dead modules, dead chips and single dead channels for( Int_t m=0; m fgkModules ) // { // cout << "Wrong number of dead modules: " << nmod << endl; // return; // } Int_t nmax = fgkWings*fgkChips; if( nchip < 0 || nchip > nmax ) { cout << "Wrong number of dead chips: " << nchip << endl; return; } nmax = (fgkWings*fgkChips - nchip)*fgkChannels; if( nchan < 0 || nchan > nmax ) { cout << "Wrong number of dead channels: " << nchan << endl; return; } TRandom *gran = new TRandom(); /* // cout << "modules" << endl; Int_t * mod = new Int_t [nmod]; Int_t i; //loop variable for( i=0; iUniform()); cout << i+1 << ": Dead module nr: " << mod[i] << endl; for(Int_t n=0; nUniform() + 1.); if( wing <=0 || wing > fgkWings ) Error("SetDeadChannels","Wrong wing"); Int_t chi = (Int_t) (fgkChips*gran->Uniform() + 1.); if( chi <=0 || chi > fgkChips ) Error("SetDeadChannels","Wrong chip:%d\n",chi); i++; chip[i-1] = chi; for( Int_t m=0; mUniform() + 1.); if( wing <=0 || wing > fgkWings ) Error("SetDeadChannels","Wrong wing:%d\n",wing); Int_t chipp = (Int_t) (fgkChips*gran->Uniform() + 1.); if( chipp <=0 || chipp > fgkChips ) Error("SetDeadChannels","Wrong chip:%d",chipp); Int_t flagChip = 0; for( k=0; kUniform() + 1.); if( channel[i-1] <=0 || channel[i-1] > fgkChannels ) Error("SetDeadChannels","Wrong channel:%d\n",channel[i-1]); channelChip[i-1] = chipp; fGain[wing-1][chipp-1][channel[i-1]-1] = 0.; } delete [] chip; delete [] channel; delete [] channelChip; } //______________________________________________________________________ void AliITSresponseSDD::PrintGains() const{ // if( GetDeadChips() == 0 && GetDeadChannels() == 0 ) return; // Print Electronics Gains cout << "**************************************************" << endl; cout << " Print Electronics Gains " << endl; cout << "**************************************************" << endl; // Print SDD electronic gains for(Int_t t=0; t