From f00bdeb57ae2639a9eba4a19e3aa9ab293d538d0 Mon Sep 17 00:00:00 2001 From: GernotMaier Date: Mon, 12 Jan 2026 09:28:32 +0100 Subject: [PATCH 1/2] correct marker color --- src/VPlotInstrumentResponseFunction.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/VPlotInstrumentResponseFunction.cpp b/src/VPlotInstrumentResponseFunction.cpp index b291eacbd..69244d11d 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 ) { From eaf50349b4ec55cbd7d97d639344619e2052c58e Mon Sep 17 00:00:00 2001 From: GernotMaier Date: Tue, 13 Jan 2026 18:05:38 +0100 Subject: [PATCH 2/2] absolute essential important bug fix when getting zenith angle for MC files --- src/printRunParameter.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/printRunParameter.cpp b/src/printRunParameter.cpp index 690908a52..c8128f458 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;