00001 00014 #ifndef LARUTILCONFIG_HH 00015 #define LARUTILCONFIG_HH 00016 00017 #include <iostream> 00018 #include "Base-TypeDef.hh" 00019 00020 namespace larutil { 00026 class LArUtilConfig : public larlight::larlight_base { 00027 00028 private: 00029 00031 LArUtilConfig(){}; 00032 00034 virtual ~LArUtilConfig(){}; 00035 00036 static larlight::GEO::DetId_t _detector; 00037 00038 public: 00039 00040 static bool SetDetector(larlight::GEO::DetId_t type); 00041 00042 static larlight::GEO::DetId_t Detector() { return _detector;} 00043 00044 }; 00045 } 00046 00047 #endif 00048 // end of doxygen group 00049