Go to the documentation of this file.00001 #ifndef SurveyInputTextReader_h
00002 #define SurveyInputTextReader_h
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #include "Alignment/CommonAlignment/interface/StructureType.h"
00016 #include "Alignment/CommonAlignment/interface/Utilities.h"
00017
00018 class SurveyInputTextReader
00019 {
00020 public:
00021
00022 typedef std::pair<align::ID, align::StructureType> UniqueId;
00023
00024 typedef std::map<UniqueId, align::Scalars> MapType;
00025 typedef std::pair<UniqueId, align::Scalars> PairType;
00026
00028 void readFile( const std::string& textFileName );
00029
00030
00031 const MapType& UniqueIdMap() const { return theMap; }
00032
00033 private:
00034
00035 MapType theMap;
00036
00037 static const int NINPUTS = 27;
00038
00039 };
00040
00041 #endif