Dear experts, I’m having some issues running the plotting step of FCCAnalyses. Stage1 & final works fine, but when trying to run the plotting - I get the following error:
----> INFO: Input directory: DarkPhotons/histos/
----> INFO: Output directory: DarkPhotons/Plots/
----> INFO: Output file types to be used: [png]
----> INFO: Integrated luminosity: 1.08e+07 pb-1
----> INFO: Scale factor for signal: 0
----> INFO: Scale factor for background: 0
----> INFO: Signal stacking options to be used for the plots: [nostack]
----> INFO: X-axis scale types to be used for the plots: [lin]
----> INFO: Y-axis scale types to be used for the plots: [lin, log]
----> INFO: Plotting staged analysis plots...
----> INFO: var: n_RecoMuons label: DarkPhotons selection: selNone
----> WARNING: No histograms provided!
- plot name: "n_RecoMuons_DarkPhotons_liny"
Continuing...
----> WARNING: No histograms provided!
- plot name: "n_RecoMuons_DarkPhotons_logy"
Continuing...
----> WARNING: No histograms provided!
- plot name: "AAAyields_DarkPhotons"
Continuing...
----> INFO: var: RecoMuons_InvMass label: DarkPhotons selection: selNone
----> WARNING: No histograms provided!
- plot name: "RecoMuons_InvMass_DarkPhotons_liny"
Continuing...
----> WARNING: No histograms provided!
- plot name: "RecoMuons_InvMass_DarkPhotons_logy"
Continuing...
----> INFO: var: Leading_jets_invMass label: DarkPhotons selection: selNone
----> WARNING: No histograms provided!
- plot name: "Leading_jets_invMass_DarkPhotons_liny"
Continuing...
----> WARNING: No histograms provided!
- plot name: "Leading_jets_invMass_DarkPhotons_logy"
Continuing...
----> INFO: var: LeadingJet_pt label: DarkPhotons selection: selNone
----> WARNING: No histograms provided!
- plot name: "LeadingJet_pt_DarkPhotons_liny"
Continuing...
----> WARNING: No histograms provided!
- plot name: "LeadingJet_pt_DarkPhotons_logy"
Continuing...
----> INFO: var: SubleadingJet_pt label: DarkPhotons selection: selNone
----> WARNING: No histograms provided!
- plot name: "SubleadingJet_pt_DarkPhotons_liny"
Continuing...
----> WARNING: No histograms provided!
- plot name: "SubleadingJet_pt_DarkPhotons_logy"
Continuing...
My plotting script looks like the following:
import ROOT
# global parameters
intLumi = 10.8e+06 #in pb-1
###If scaleSig=0 or scaleBack=0, we don't apply any additional scaling, on top of the normalization to cross section and integrated luminosity, as defined in finalSel.py
###If scaleSig or scaleBack is not defined, plots will be normalized to 1
scaleSig = 0.
scaleBack = 0.
ana_tex = 'e^{+}e^{-} #rightarrow Zh, Z #rightarrow qq, h #rightarrow ZdZd, Zd #rightarrow #mu #mu'
delphesVersion = '3.4.2'
energy = 240
collider = 'FCC-ee'
inputDir = 'DarkPhotons/histos/'
formats = ['png']
yaxis = ['lin','log']
stacksig = ['nostack']
outdir = 'DarkPhotons/Plots/'
splitLeg = False
variables = ['n_RecoMuons',
'RecoMuons_InvMass',
'Leading_jets_invMass',
'LeadingJet_pt',
'SubleadingJet_pt',
]
#Dictionary with the list of selections to be plotted for this analysis. The name of the selections should be the same than in the final selection
selections = {}
selections['DarkPhotons'] = [
"selNone",
]
extralabel = {}
extralabel['selNone'] = r"No selection"
linestyle = {}
colors = {}
colors['dark_photon_mZd500MeV_e_8.07e-6'] = ROOT.kMagenta-10
colors['dark_photons_mZd380MeV_e_6.7e-7'] = ROOT.kBlue+3
plots = {}
plots['DarkPhotons'] = {
'signal':{'dark_photon_mZd500MeV_e_8.07e-6':['dark_photon_mZd500MeV_e_8.07e-6'],
'dark_photons_mZd380MeV_e_6.7e-7':['dark_photons_mZd380MeV_e_6.7e-7'],
},
'backgrounds':{
}
}
legend = {}
legend['dark_photon_mZd500MeV_e_8.07e-6'] = r'500 MeV, 8.07\times10^{-6}'
legend['dark_photons_mZd380MeV_e_6.7e-7'] = r'380 MeV, 6.7\times10^{-7}'
Am I making any obvious mistakes? I’m also using the preedm4hep version. Thanks ![]()