diff --git a/include/sot-dynamic/angle-estimator.h b/include/sot-dynamic/angle-estimator.h
index 759f8205233e3deb0a6758bb83c8c8ba6c219028..6820c434408b5da9fe69598a30cd00cf46262af4 100644
--- a/include/sot-dynamic/angle-estimator.h
+++ b/include/sot-dynamic/angle-estimator.h
@@ -103,7 +103,14 @@ class SOTANGLEESTIMATOR_EXPORT AngleEstimator
 					const int& time );
   
  public: /* --- PARAMS --- */
-  bool fromSensor;
+  void fromSensor(const bool& inFromSensor) {
+    fromSensor_ = fromSensor;
+  }
+  bool fromSensor() const {
+    return fromSensor_;
+  }
+ private:
+  bool fromSensor_;
 
   virtual void commandLine( const std::string& cmdLine,
 			    std::istringstream& cmdArgs,
diff --git a/src/angle-estimator.cpp b/src/angle-estimator.cpp
index 59f5151d71342cc3d875c3f3b46e4b2ed6f380b9..3bc43ba2509cb137f1ec7c37a53e67164e24410e 100644
--- a/src/angle-estimator.cpp
+++ b/src/angle-estimator.cpp
@@ -73,7 +73,7 @@ AngleEstimator( const std::string & name )
 			    "sotAngleEstimator("+name
 			    +")::output(vectorRollPitchYaw)::waistWorldPoseRPY" )
 
-   ,fromSensor(true)
+   ,fromSensor_(true)
 {
   sotDEBUGIN(5);
   
@@ -267,7 +267,7 @@ computeWaistWorldPosition( MatrixHomogeneous& res,
   const MatrixHomogeneous & waistMleg = contactEmbeddedPositionSIN( time );
   MatrixHomogeneous legMwaist; waistMleg.inverse( legMwaist );
 
-  if( fromSensor )
+  if( fromSensor_ )
     { 
       const MatrixRotation & Rflex = flexibilitySOUT( time ); // footRleg
       ml::Vector zero(3); zero.fill(0.);
@@ -316,9 +316,9 @@ commandLine( const std::string& cmdLine,
       std::string val; cmdArgs>>val; 
       if( ("true"==val)||("false"==val) )
 	{
-	  fromSensor = ( val=="true" ); 
+	  fromSensor_ = ( val=="true" );
 	} else {
-	  os << "fromSensor = " << (fromSensor?"true":"false") << std::endl;
+	  os << "fromSensor = " << (fromSensor_?"true":"false") << std::endl;
 	}
     }
   else { Entity::commandLine( cmdLine,cmdArgs,os); }