From dcc1d037b7515b87709586f9a76debd7b9cc6298 Mon Sep 17 00:00:00 2001 From: shahoian Date: Wed, 19 Sep 2012 23:01:01 +0000 Subject: [PATCH] The number of VertexerTracks Cuts was obsolete and settings would be rejected when new object is generated --- GRP/MakeGRPRecoParam.C | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/GRP/MakeGRPRecoParam.C b/GRP/MakeGRPRecoParam.C index 6febb3c496a..53772ab7d99 100644 --- a/GRP/MakeGRPRecoParam.C +++ b/GRP/MakeGRPRecoParam.C @@ -27,7 +27,7 @@ void MakeGRPRecoParam(AliRecoParam::EventSpecie_t default=AliRecoParam::kLowMult AliGRPRecoParam * param = AliGRPRecoParam::GetLowFluxParam(); param->SetEventSpecie(AliRecoParam::kLowMult); param->SetVertexerTracksConstraintITS(kTRUE); - Double_t cutsITS[21]={0.1, + Double_t cutsITS[24]={0.1, 0.1, 0.5, //4, // minimum 4 clusters (default was 5) @@ -49,9 +49,13 @@ void MakeGRPRecoParam(AliRecoParam::EventSpecie_t default=AliRecoParam::kLowMult 2., 10., 1., - 50. + 50., + 50., + 0., + 999999., + 3. }; - param->SetVertexerTracksCutsITS(21,cutsITS); + param->SetVertexerTracksCutsITS(24,cutsITS); param->SetVertexerTracksConstraintTPC(kTRUE); recoParamArray->AddLast(param); } @@ -59,7 +63,7 @@ void MakeGRPRecoParam(AliRecoParam::EventSpecie_t default=AliRecoParam::kLowMult AliGRPRecoParam * param = AliGRPRecoParam::GetHighFluxParam(); param->SetEventSpecie(AliRecoParam::kHighMult); param->SetVertexerTracksConstraintITS(kTRUE); - Double_t cutsITS[21]={0.1, + Double_t cutsITS[24]={0.1, 0.1, 0.5, 4, // minimum 4 clusters (default was 5) @@ -80,9 +84,12 @@ void MakeGRPRecoParam(AliRecoParam::EventSpecie_t default=AliRecoParam::kLowMult 2., 10., 1., - 50. + 50., + 0., + 999999., + 3. }; // faster finder algo for Iteration 0 - param->SetVertexerTracksCutsITS(21,cutsITS); + param->SetVertexerTracksCutsITS(24,cutsITS); param->SetVertexerTracksConstraintTPC(kTRUE); recoParamArray->AddLast(param); } -- 2.39.3