2626using namespace rapidjson ;
2727
2828template < typename ValueType >
29- void readArray (const Value & jsonArray , vector < ValueType > & output )
29+ void readArray (const Value & jsonArray , std :: vector < ValueType > & output )
3030{
3131 for (auto it = jsonArray .Begin (); it != jsonArray .End (); it ++ ) {
3232 auto value = it -> template Get < ValueType > ( );
3333 output .emplace_back (value );
3434 }
3535}
3636
37- void parseStringArray (const Value & jsonArray , vector < string > & output )
37+ void parseStringArray (const Value & jsonArray , std :: vector < string > & output )
3838{
3939 size_t arrayLength = jsonArray .Size ();
4040 for (size_t i = 0 ; i < arrayLength ; i ++ ) {
@@ -45,7 +45,7 @@ void parseStringArray(const Value& jsonArray, vector<string>& output)
4545}
4646
4747void SetInputCorrelNames (DhCorrelationExtraction * plotter , TString pathFileMass , TString pathFileSE , TString pathFileME , TString dirSE , TString dirME , TString histoNameCorrSignal , TString histoNameCorrSideba );
48- void SetInputHistoInvMassNames (DhCorrelationExtraction * plotter , vector < string > inputMassNames );
48+ void SetInputHistoInvMassNames (DhCorrelationExtraction * plotter , std :: vector < string > inputMassNames );
4949
5050void ExtractOutputCorrel (TString cfgFileName = "config_CorrAnalysis.json" )
5151{
@@ -185,7 +185,7 @@ void SetInputCorrelNames(DhCorrelationExtraction* plotter, TString pathFileMass,
185185 return ;
186186}
187187
188- void SetInputHistoInvMassNames (DhCorrelationExtraction * plotter , vector < string > inputMassNames )
188+ void SetInputHistoInvMassNames (DhCorrelationExtraction * plotter , std :: vector < std :: string > inputMassNames )
189189{ // to use if sgn and bkg extraction is done apart
190190
191191 plotter -> SetMassHistoNameSgn (inputMassNames [0 ].data ());
0 commit comments