Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:59:46

0001 #ifndef CalibTracker_SiStripChannelGain_SiStripDetInfoFileReader_h
0002 #define CalibTracker_SiStripChannelGain_SiStripDetInfoFileReader_h
0003 
0004 #include <string>
0005 #include "CalibFormats/SiStripObjects/interface/SiStripDetInfo.h"
0006 
0007 namespace SiStripDetInfoFileReader {
0008   using DetInfo = SiStripDetInfo::DetInfo;
0009 
0010   constexpr static char const* const kDefaultFile = "CalibTracker/SiStripCommon/data/SiStripDetInfo.dat";
0011 
0012   /**
0013    * Read SiStrip detector info from a file
0014    */
0015   SiStripDetInfo read(std::string filePath);
0016 };  // namespace SiStripDetInfoFileReader
0017 
0018 #endif