21 class TMemberInspector;
32 void PrintChannelCorrections(
string Name);
33 void PrintChannelMapInfo(
int GlobalID);
34 void PrintChannelMapInfo(
string Name);
35 void PrintFilterInfo(
string Name);
41 int GetBarId(
string Name) {
return BarIds[Name]; }
42 string GetBarName(
int BarId) {
return BarId2Name[BarId]; }
44 void AddCorrectionSettings(
string Name,
double slope,
double inter,
double toff);
45 void AddMapSettings(
string Name,
int GlobalID,
string RefName,
int refGlobalID);
46 void AddFilterSettings(
string Name,
int FL,
int FG,
int d,
int w,
bool flag);
48 void SetBarIds(map<string, int> v);
53 map<string, double> TheTimingOffsets;
54 map<string, double> TheEnergySlopes;
55 map<string, double> TheEnergyIntercepts;
57 map<string, int> TheFLs;
58 map<string, int> TheFGs;
59 map<string, int> Theds;
60 map<string, int> Thews;
61 map<string, bool> TheDontTraceAnalyzeFlags;
63 map<int, string> GlobalID2FullName;
64 map<int, int> GlobalID2RefGlobalID;
65 map<int, string> GlobalID2RefName;
67 map<string, int> Name2GlobalID;
69 map<string, int> BarIds;
70 void BuildReverseMap();
71 map<int, string> BarId2Name;