X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=TPC%2FAliTPCRecoParam.cxx;h=99a025362db05d598118e8d9d1c213d6f0428970;hb=266f8637a69e7cc36ee0de62875744a1f2b96842;hp=58ba591b4379832abe23bc965685f37a6839d70a;hpb=7d27c1dfa3ea87f59ff8a262382b6c06ecbe0a04;p=u%2Fmrichter%2FAliRoot.git diff --git a/TPC/AliTPCRecoParam.cxx b/TPC/AliTPCRecoParam.cxx index 58ba591b437..99a025362db 100644 --- a/TPC/AliTPCRecoParam.cxx +++ b/TPC/AliTPCRecoParam.cxx @@ -18,7 +18,21 @@ // // // Class with TPC reconstruction parameters // // // -// // +// +/* + The reconstruction parameters are used in the AliTPCclustererMI and AliTPCtrackerMI + + They are retrieved: + 0. User speciefied it in reconstruction macro + 1. if (not 0) from OCDB - AliTPCcalibDB::GetRecoParam(eventtype) + 2. if (not 0 or 1) default parameter - High flux enevironment used + + FIXME: + In the future reconstruction parameters should be changed on event basis + But for the moment, event types are still not defined + +*/ + // /////////////////////////////////////////////////////////////////////////////// @@ -31,10 +45,13 @@ ClassImp(AliTPCRecoParam) //_____________________________________________________________________________ AliTPCRecoParam::AliTPCRecoParam(): + AliDetectorRecoParam(), + fBClusterSharing(kTRUE), fCtgRange(1.05), fMaxSnpTracker(0.95), fMaxSnpTrack(0.999), fBYMirror(kTRUE), + fDumpSignal(kFALSE), fFirstBin(0), fLastBin(-1), fBCalcPedestal(kFALSE), @@ -55,6 +72,8 @@ AliTPCRecoParam::AliTPCRecoParam(): // // constructor // + SetName("TPC"); + SetTitle("TPC"); } //_____________________________________________________________________________ @@ -86,7 +105,7 @@ AliTPCRecoParam *AliTPCRecoParam::GetHighFluxParam(){ AliTPCRecoParam *param = new AliTPCRecoParam; param->fCtgRange = 1.05; param->fFirstBin = 0; - param->fLastBin = 1000; + param->fLastBin = 1000; return param; } @@ -95,6 +114,7 @@ AliTPCRecoParam *AliTPCRecoParam::GetLaserTestParam(Bool_t bPedestal){ // special setting for laser // AliTPCRecoParam *param = new AliTPCRecoParam; + param->fDumpSignal=kTRUE; param->fCtgRange = 10.05; param->fFirstBin = 0; param->fLastBin = 1000; @@ -106,6 +126,8 @@ AliTPCRecoParam *AliTPCRecoParam::GetLaserTestParam(Bool_t bPedestal){ param->fMaxC = 0.02; param->fBSpecialSeeding = kTRUE; param->fBYMirror = kFALSE; + // + // return param; } @@ -114,6 +136,7 @@ AliTPCRecoParam *AliTPCRecoParam::GetCosmicTestParam(Bool_t bPedestal){ // special setting for cosmic // AliTPCRecoParam *param = new AliTPCRecoParam; + param->fDumpSignal=kTRUE; param->fCtgRange = 10.05; // full TPC param->fFirstBin = 60; param->fLastBin = 1000;