diff --git a/TileCalorimeter/TileRecUtils/TileRecUtils/TileCellBuilderFromHit.h b/TileCalorimeter/TileRecUtils/TileRecUtils/TileCellBuilderFromHit.h
index e7a855aa9f3548d8a0c6180a855770b113274c8c..a68ffb9d27338932757c7f02e447a1737ef5cc18 100644
--- a/TileCalorimeter/TileRecUtils/TileRecUtils/TileCellBuilderFromHit.h
+++ b/TileCalorimeter/TileRecUtils/TileRecUtils/TileCellBuilderFromHit.h
@@ -108,10 +108,8 @@ class TileCellBuilderFromHit: public AthAlgTool, virtual public ICaloCellMakerTo
     float m_maxTime;              //!< maximum time for the PMTs in the cels
     float m_minTime;              //!< minimum time for the PMTs in the cels
     bool m_maskBadChannels;      //!< if true=> bad channels are masked
-    bool m_fakeCrackCells;       //!< if true=> fake E3/E4 cells added
     bool m_useNoiseTool;         //!< if true=> add noise to all cells
     float m_noiseSigma;          //!< cell electroing noise if the CaloNoiseTool is switched off 
-    float m_channelNoiseSigma;   //!< cell electroing noise divided by sqrt(2.);
 
     const TileID* m_tileID;   //!< Pointer to TileID
     const TileTBID* m_tileTBID; //!< Pointer to TileTBID
@@ -136,9 +134,7 @@ class TileCellBuilderFromHit: public AthAlgTool, virtual public ICaloCellMakerTo
     TileCellContainer* m_E4prCells;     //!< Pointer to E4'  cell container
 
     TileFragHash::TYPE m_RChType;        //!< Type of TileRawChannels (Fit, OF2, etc.)
-    TileRawChannelUnit::UNIT m_RChUnit;  //!< Unit for TileRawChannels (ADC, pCb, etc.)
     //unsigned int m_bsflags;              //!< other flags stored in TileRawChannelContainer
-    float m_maxTimeCorr;                 //!< max possible time when time correction is applied
 
     TileDrawerEvtStatus m_drawerEvtStatus[5][64]; //!< status of every drawer in every event
     TileDrawerRunStatus m_drawerRunStatus[5][64]; //!< overall status of drawer in whole run
diff --git a/TileCalorimeter/TileRecUtils/src/TileCellBuilderFromHit.cxx b/TileCalorimeter/TileRecUtils/src/TileCellBuilderFromHit.cxx
index 009986fffe3370a2542c0bc4978d22675ee662b4..67e0818f0683e57b1cf937fdda21b4b9f6795a6f 100644
--- a/TileCalorimeter/TileRecUtils/src/TileCellBuilderFromHit.cxx
+++ b/TileCalorimeter/TileRecUtils/src/TileCellBuilderFromHit.cxx
@@ -102,7 +102,6 @@ TileCellBuilderFromHit::TileCellBuilderFromHit(const std::string& type, const st
   , m_MBTSCells(0)
   , m_E4prCells(0)
   , m_RChType(TileFragHash::Default)
-  , m_RChUnit(TileRawChannelUnit::ADCcounts)
 {
   declareInterface<ICaloCellMakerTool>( this );
   declareInterface<TileCellBuilderFromHit>( this );
@@ -1053,7 +1052,7 @@ void TileCellBuilderFromHit::build(const ITERATOR & begin, const ITERATOR & end,
     int sample = m_tileID->sample(cell_id);
 
     bool single_PMT_C10 = ( section == TileID::GAPDET && sample == TileID::SAMP_B && !m_cabling->C10_connected(module) );
-    bool missing_D4 = ( section == TileID::GAPDET && sample == TileID::SAMP_D && (module == (side>0)?14:17) );
+    bool missing_D4 = ( section == TileID::GAPDET && sample == TileID::SAMP_D && (module == ((side>0)?14:17)) );
     bool Ecell = (sample == TileID::SAMP_E);
     bool single_PMT = Ecell || single_PMT_C10;