CMS 3D CMS Logo

QTestParameterNames.cc
Go to the documentation of this file.
1 
8 #include <iostream>
9 #include <cstring>
12 
14 
15  this->constructMap(ContentsXRangeROOT::getAlgoName(), "xmin", "xmax");
16  this->constructMap(ContentsYRangeROOT::getAlgoName(), "ymin", "ymax","useEmptyBins");
17  this->constructMap(DeadChannelROOT::getAlgoName(), "threshold");
18  this->constructMap(NoisyChannelROOT::getAlgoName(), "tolerance", "neighbours");
19  this->constructMap(MeanWithinExpectedROOT::getAlgoName(), "mean","useRMS","useSigma","useRange","xmin","xmax");
20 
21  //======================== new quality tests in the parser =====================//
22  this->constructMap(Comp2RefEqualHROOT::getAlgoName(), "testparam");
23  this->constructMap(Comp2RefChi2ROOT::getAlgoName(), "testparam");
24  this->constructMap(Comp2Ref2DChi2ROOT::getAlgoName(), "testparam");
26 
27 // this->constructMap(MostProbableLandauROOT::getAlgoName(), "xmin", "xmax","normalization", "mostprobable", "sigma");
28  this->constructMap(ContentsWithinExpectedROOT::getAlgoName(), "minMean", "maxMean", "minRMS", "maxRMS", "toleranceMean", "minEntries", "useEmptyBins");
29  //this->constructMap(ContentsWithinExpectedASROOT::getAlgoName(), "minCont", "maxCont");
30 
31  this->constructMap(CompareToMedianROOT::getAlgoName(), "MinRel", "MaxRel", "UseEmptyBins", "MinAbs", "MaxAbs");
32  this->constructMap(CompareLastFilledBinROOT::getAlgoName(), "AvVal", "MinVal", "MaxVal");
34 }
35 
36 
37 
38 
40  std::string param4,std::string param5,std::string param6,std::string param7,std::string param8){
41 
42 
43  std::vector<std::string> paramNames;
44  if(std::strcmp(param1.c_str(),"undefined")) paramNames.push_back(param1);
45  if(std::strcmp(param2.c_str(),"undefined")) paramNames.push_back(param2);
46  if(std::strcmp(param3.c_str(),"undefined")) paramNames.push_back(param3);
47  if(std::strcmp(param4.c_str(),"undefined")) paramNames.push_back(param4);
48  if(std::strcmp(param5.c_str(),"undefined")) paramNames.push_back(param5);
49  if(std::strcmp(param6.c_str(),"undefined")) paramNames.push_back(param6);
50  if(std::strcmp(param7.c_str(),"undefined")) paramNames.push_back(param7);
51  if(std::strcmp(param8.c_str(),"undefined")) paramNames.push_back(param8);
52 
53  configurationMap[testType]=paramNames;
54 
55 }
56 
57 
58 
59 std::vector<std::string> QTestParameterNames::getTestParamNames(std::string theTestType){
60 
61  if(configurationMap.find(theTestType) != configurationMap.end()) {
62  return configurationMap[theTestType];
63  }else{
64  std::vector<std::string> empty;
65  return empty;
66  }
67 }
static std::string getAlgoName()
Definition: QTest.h:193
std::map< std::string, std::vector< std::string > > configurationMap
std::vector< std::string > getTestParamNames(std::string theTestType)
static std::string getAlgoName()
Definition: QTest.h:249
static std::string getAlgoName()
Definition: QTest.h:221
static std::string getAlgoName()
Definition: QTest.h:735
static std::string getAlgoName()
Definition: QTest.h:523
static std::string getAlgoName()
Definition: QTest.h:264
static std::string getAlgoName()
Definition: QTest.h:484
void constructMap(std::string testType, std::string param1="undefined", std::string param2="undefined", std::string param3="undefined", std::string param4="undefined", std::string param5="undefined", std::string param6="undefined", std::string param7="undefined", std::string param8="undefined")
static std::string getAlgoName()
Definition: QTest.h:316
static std::string getAlgoName()
get algorithm name
Definition: QTest.h:845
QTestParameterNames()
Constructor.
static std::string getAlgoName()
Definition: QTest.h:180
static std::string getAlgoName()
Definition: QTest.h:343
static std::string getAlgoName()
Definition: QTest.h:289
static std::string getAlgoName()
Definition: QTest.h:783