From: mkrzewic Date: Mon, 2 Feb 2015 12:10:05 +0000 (+0100) Subject: c++11 fix X-Git-Url: http://git.uio.no/git/?a=commitdiff_plain;h=0b79d6c624eda0ede19f68228c4de3e3a3066aa0;p=u%2Fmrichter%2FAliRoot.git c++11 fix --- diff --git a/TPC/TPCbase/AliTPCClusterParam.cxx b/TPC/TPCbase/AliTPCClusterParam.cxx index c26f6e11100..27a552bd8f7 100644 --- a/TPC/TPCbase/AliTPCClusterParam.cxx +++ b/TPC/TPCbase/AliTPCClusterParam.cxx @@ -1915,7 +1915,7 @@ void AliTPCClusterParam::SetWaveCorrectionMap( THnBase *Map) fWaveCorrectionMap = dynamic_cast( Map->Clone(Map->GetName())); if( fWaveCorrectionMap ){ fWaveCorrectionMirroredPad = ( fWaveCorrectionMap->GetAxis(3)->FindFixBin(0.5)<=1 ); // Pad axis is mirrored at 0.5 - fWaveCorrectionMirroredZ = ( fWaveCorrectionMap->GetAxis(1)->FindFixBin(0)<=1); // Z axis is mirrored at 0 + fWaveCorrectionMirroredZ = ( fWaveCorrectionMap->GetAxis(1)->FindFixBin(0.0)<=1); // Z axis is mirrored at 0 fWaveCorrectionMirroredAngle = ( fWaveCorrectionMap->GetAxis(4)->FindFixBin(0.0)<=1 ); // Angle axis is mirrored at 0 } }