Skip to content

Commit

Permalink
Protection against cluster error set to be <100micron
Browse files Browse the repository at this point in the history
  • Loading branch information
shahor02 authored and ktf committed Nov 6, 2016
1 parent bae7951 commit 9f7eca9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions TPC/TPCbase/AliTPCClusterParam.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -934,6 +934,7 @@ Float_t AliTPCClusterParam::GetError0Par(Int_t dim, Int_t type, Float_t z, Floa
value += fParamS0Par[dim][type][4]*angle*angle*angle*angle;
value += fParamS0Par[dim][type][5]*z*angle*angle;
value = TMath::Sqrt(TMath::Abs(value));
if (value<0.01) value = 0.01;
return value;
}

Expand Down

0 comments on commit 9f7eca9

Please sign in to comment.