Newer
Older
TB_Chris / TbUT / src / .svn / text-base / TbUTDataLocations.h.svn-base
@iaro iaro on 9 May 2016 953 bytes first attempt of automated anal
  1. /*
  2. * TbUTDataLocations.h
  3. *
  4. * Created on: Oct 11, 2014
  5. * Author: ADendek
  6. */
  7.  
  8. #pragma once
  9. #pragma GCC diagnostic ignored "-Wunused-variable"
  10.  
  11. #include <string>
  12.  
  13. namespace TbUT
  14. {
  15. namespace DataLocations
  16. {
  17. //should be extended
  18. static const std::string& RawTES = "Tb/TbUT/Raw";
  19. static const std::string& HeaderTES = "Tb/TbUT/Header";
  20. static const std::string& PedestalTES = "Tb/TbUT/Pedestal";
  21. static const std::string& CMSTES = "Tb/TbUT/CMS";
  22. static const std::string& ZS_TES = "Tb/TbUT/ZS";
  23. static const std::string& Clusters_TES = "Tb/TbUT/Clusters";
  24. static const std::string& KeplerCluster_TES = "Tb/TbUT/KeplerClusters";
  25.  
  26. static const std::string & MaskLocation = "$KEPLERROOT/options/UT/ChannelMask_NO.dat";
  27. static const std::string & PedestalLocation = "$KEPLERROOT/options/UT/Pedestal.dat";
  28. static const std::string & NoiseTreshold = "$KEPLERROOT/options/UT/Noise.dat";
  29. }
  30. }