diff --git a/src/VPlotInstrumentResponseFunction.cpp b/src/VPlotInstrumentResponseFunction.cpp index b291eacb..69244d11 100644 --- a/src/VPlotInstrumentResponseFunction.cpp +++ b/src/VPlotInstrumentResponseFunction.cpp @@ -1635,11 +1635,13 @@ TCanvas* VPlotInstrumentResponseFunction::plotPSF( vector< double > i_Energy_TeV if( iCumulative ) { hCumu->SetLineColor( VUtilities::color_id( i + 1 ) ); + hCumu->SetMarkerColor( VUtilities::color_id( i + 1 ) ); hCumu->Draw( "same" ); } else { h->SetLineColor( VUtilities::color_id( i + 1 ) ); + h->SetMarkerColor( VUtilities::color_id( i + 1 ) ); // rebin if( iPlotTheta2 ) { diff --git a/src/printRunParameter.cpp b/src/printRunParameter.cpp index 690908a5..c8128f45 100644 --- a/src/printRunParameter.cpp +++ b/src/printRunParameter.cpp @@ -103,7 +103,8 @@ bool readRunParameter( TFile* fIn, string iPara ) iPara.find( "updated-runinfo" ) != string::npos ) << "\t"; cout << fPar->getInstrumentEpoch( true ) << "\t"; cout << fPar->getAtmosphereID( iPara.find( "updated-runinfo" ) != string::npos ) << "\t"; - cout << fPar->fDBRunType << "\t"; + if (fPar->fDBRunType.size() > 0 ) cout << fPar->fDBRunType << "\t"; + else cout << "no_db_runtype \t"; for( unsigned int i = 0; i < fPar->fTelToAnalyze.size(); i++ ) { cout << fPar->fTelToAnalyze[i] + 1;