Skip to content

Commit

Permalink
Re-tag v4-15-Rev-04
Browse files Browse the repository at this point in the history
  • Loading branch information
hristov committed Sep 19, 2008
2 parents 5d9df25 + b5f09ab commit e01e2ed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 2 additions & 0 deletions STEER/AliExternalTrackParam.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,7 @@ Bool_t AliExternalTrackParam::CorrectForMeanMaterial
//Multiple scattering******************
if (xOverX0 != 0) {
Double_t theta2=14.1*14.1/(beta2*p2*1e6)*TMath::Abs(xOverX0);
if(theta2>kVeryBig) return kFALSE;
//Double_t theta2=1.0259e-6*14*14/28/(beta2*p2)*TMath::Abs(d)*9.36*2.33;
fC22 += theta2*(1.- fP2*fP2)*(1. + fP3*fP3);
fC33 += theta2*(1. + fP3*fP3)*(1. + fP3*fP3);
Expand Down Expand Up @@ -302,6 +303,7 @@ Bool_t AliExternalTrackParam::CorrectForMaterial
//Multiple scattering******************
if (d!=0) {
Double_t theta2=14.1*14.1/(beta2*p2*1e6)*TMath::Abs(d);
if(theta2>kVeryBig) return kFALSE;
//Double_t theta2=1.0259e-6*14*14/28/(beta2*p2)*TMath::Abs(d)*9.36*2.33;
fC22 += theta2*(1.- fP2*fP2)*(1. + fP3*fP3);
fC33 += theta2*(1. + fP3*fP3)*(1. + fP3*fP3);
Expand Down
4 changes: 1 addition & 3 deletions STEER/AliReconstruction.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -509,6 +509,7 @@ AliReconstruction::~AliReconstruction()
// clean up

CleanUp();
delete fGRPData;
delete fForcedFieldMap;
fOptions.Delete();
if (fAlignObjArray) {
Expand Down Expand Up @@ -2585,9 +2586,6 @@ void AliReconstruction::CleanUp()
delete fDiamondProfileTPC;
fDiamondProfileTPC = NULL;
}
delete fGRPData;
fGRPData = NULL;

delete fRunLoader;
fRunLoader = NULL;
delete fRawReader;
Expand Down

0 comments on commit e01e2ed

Please sign in to comment.