diff --git a/src/TMS_ChargeID.cpp b/src/TMS_ChargeID.cpp index 0b8eb49c..e1386738 100644 --- a/src/TMS_ChargeID.cpp +++ b/src/TMS_ChargeID.cpp @@ -1,6 +1,8 @@ #include "TMS_ChargeID.h" -//TODO??? TMS_ChargeID::TMS_ChargeID() : +TMS_ChargeID::TMS_ChargeID() { + +} // Check if hit is in the far negative region of x (detector) bool TMS_ChargeID::region1(const TMS_Hit &Hit) { diff --git a/src/TMS_ChargeID.h b/src/TMS_ChargeID.h index be441e9d..7f4e765a 100644 --- a/src/TMS_ChargeID.h +++ b/src/TMS_ChargeID.h @@ -17,8 +17,9 @@ class TMS_ChargeID { int ID_Track_Charge(const std::vector &Track); private: - TMS_Hit Hit; - std::vector Track; + // These are never used, todo delete? + //TMS_Hit Hit; + //std::vector Track; }; #endif