PhD-Kopecna-Renata/Scripts/putIntoFigures_Utils.py
2022-01-19 11:20:31 +01:00

15 lines
247 B
Python

from __future__ import print_function
import numpy as np
def RunTag(Run):
return "Run"+str(Run)
def RunList():
return ["1","2","12"]
def RunDict():
return{ "1" : ["1"],
"2" : ["2"],
"12": ["1","2"]
}