Error with ATLAS_LABEL in python2

Hello everyone,

When I am trying to run my python file to produce Plots , I encountered an error saying;

Traceback (most recent call last):
File “./x”, line 325, in
EventLoop(“ttbar_nonallhad_PwPy8*.root”)
File “./x”, line 160, in EventLoop
PrintUncertaintyPlots(Histos,Tag,Region,[“CT14”,“MMHT2014”,“NNPDFalphaUp”,“NNPDFalphaDown”,“PDF4LHC”],False,“PDF”)
File “./x”, line 234, in PrintUncertaintyPlots
ATLAS_LABEL(0.195,0.885," Simulation Internal",1,0.13); #ATLAS_LABEL(0.195,0.885," Simulation Internal",1,0.13);
TypeError: void ::ATLAS_LABEL(double x, double y, short color = 1) =>
takes at most 3 arguments (5 given)

Please can someone help me to resolve this problem?

Hi @aelmouss

You are calling ATLAS_LABEL with 5 arguments, but it expects only 3.

Call:
ATLAS_LABEL(0.195,0.885," Simulation Internal",1,0.13)

Declaration:
void ::ATLAS_LABEL(double x, double y, short color = 1)

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.