diff --git a/Trigger/TrigT1/TrigT1TGC/TrigT1TGC/TGCSectorLogic.h b/Trigger/TrigT1/TrigT1TGC/TrigT1TGC/TGCSectorLogic.h
index c919c9c0ffd22ffb167464e8837eb4ef95bb4ef8..00fe7a4f02361a3cab530162579efd631e8ecdc9 100644
--- a/Trigger/TrigT1/TrigT1TGC/TrigT1TGC/TGCSectorLogic.h
+++ b/Trigger/TrigT1/TrigT1TGC/TrigT1TGC/TGCSectorLogic.h
@@ -120,7 +120,7 @@ private:
   int m_sideId, m_octantId;
   TGCRegionType m_region;
   int  m_NumberOfWireHighPtBoard;
-  bool m_useGoodMF;
+  bool m_useGoodMF{false};
 
   TGCSSCController m_SSCController;
   TGCRPhiCoincidenceMatrix m_matrix;
@@ -152,7 +152,7 @@ private:
   // for inner trigger
   const TGCInnerTrackletSlot* m_innerTrackletSlots[TGCInnerTrackletSlotHolder::NUMBER_OF_SLOTS_PER_TRIGGER_SECTOR];
   bool m_useEIFI;
-  bool m_useTileMu;
+  bool m_useTileMu{false};
   TGCArguments* m_tgcArgs;
 };
 
diff --git a/Trigger/TrigT1/TrigT1TGC/src/TGCGoodMF.cxx b/Trigger/TrigT1/TrigT1TGC/src/TGCGoodMF.cxx
index 145e646fef8f9e7a1141ee11715bb26f58d3684a..741b12ed52c443423d7575614fec3fb7ffa1899d 100644
--- a/Trigger/TrigT1/TrigT1TGC/src/TGCGoodMF.cxx
+++ b/Trigger/TrigT1/TrigT1TGC/src/TGCGoodMF.cxx
@@ -73,7 +73,7 @@ bool TGCGoodMF::readBadMFList()
   std::string fullName, tag;    char delimiter = '\n';
   std::string fn = "HotRoI.v1.db";
 
-  fullName = PathResolver::find_file( fn.c_str(), "DATAPATH" );
+  fullName = PathResolver::FindCalibDirectory("dev/HotRoI")+fn;
   int mod,maxssc;
   std::ifstream file(fullName.c_str(),std::ios::in); 
   while(getline(file,buf,delimiter)) {
diff --git a/Trigger/TrigT1/TrigT1TGC/src/TGCSectorLogic.cxx b/Trigger/TrigT1/TrigT1TGC/src/TGCSectorLogic.cxx
index 3528a552a21691b36e7a42eab4a61382c02e5060..35efb8d71b41cbfc8b636c36d38559d93a713e26 100644
--- a/Trigger/TrigT1/TrigT1TGC/src/TGCSectorLogic.cxx
+++ b/Trigger/TrigT1/TrigT1TGC/src/TGCSectorLogic.cxx
@@ -46,8 +46,6 @@ namespace LVL1TGCTrigger {
     m_stripHighPtBoard(0),
     m_stripHighPtChipOut(0),
     m_useEIFI(false),
-    m_useTileMu(false),
-    m_useGoodMF(false),
     m_tgcArgs(tgcargs)
 {
   m_sideId = (idIn/NumberOfModule)/NumberOfOctant;