Skip to content

Commit

Permalink
panel/ptspec/rdiff: update scales after switch to 400 MeV pT bins
Browse files Browse the repository at this point in the history
  • Loading branch information
tschaume committed May 14, 2014
1 parent 7665ca6 commit 7660579
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 6 deletions.
8 changes: 6 additions & 2 deletions pyana/examples/gp_panel.py
Expand Up @@ -16,9 +16,13 @@ def gp_panel(version, skip):
:param version: plot version / input subdir name
:type version: str
"""
#scale = {
# '19': 0.360245401469014, '200': 1.0, '39': 0.37353401814177617,
# '27': 0.39374082474968564, '62': 0.47675708579800646
#}
scale = {
'19': 0.360245401469014, '200': 1.0, '39': 0.37353401814177617,
'27': 0.39374082474968564, '62': 0.47675708579800646
'19': 0.4274654744079354, '200': 1.0, '39': 0.4362451929487654,
'27': 0.47464918475541873, '62': 0.5800852553921563
}
inDir, outDir = getWorkDirs()
inDir = os.path.join(inDir, version)
Expand Down
8 changes: 6 additions & 2 deletions pyana/examples/gp_ptspec.py
Expand Up @@ -40,9 +40,13 @@ def gp_ptspec():
inDir, outDir = getWorkDirs()
data, data_avpt, dpt_dict = {}, {}, {}
yvals, yvalsPt = [], []
#scale = {
# '19': 0.360245401469014, '200': 1.0, '39': 0.37353401814177617,
# '27': 0.39374082474968564, '62': 0.47675708579800646
#}
scale = {
'19': 0.360245401469014, '200': 1.0, '39': 0.37353401814177617,
'27': 0.39374082474968564, '62': 0.47675708579800646
'19': 0.4274654744079354, '200': 1.0, '39': 0.4362451929487654,
'27': 0.47464918475541873, '62': 0.5800852553921563
}
lmr_label = None
for filename in os.listdir(inDir):
Expand Down
8 changes: 6 additions & 2 deletions pyana/examples/gp_rdiff.py
Expand Up @@ -37,9 +37,13 @@ def gp_rdiff(version, nomed, noxerr, diffRel, divdNdy):
inDir, outDir = getWorkDirs()
inDir = os.path.join(inDir, version)
data, cocktail, medium = OrderedDict(), OrderedDict(), OrderedDict()
#scale = {
# '19.6': 0.360245401469014, '200': 1.0, '39': 0.37353401814177617,
# '27': 0.39374082474968564, '62.4': 0.47675708579800646
#}
scale = {
'19.6': 0.360245401469014, '200': 1.0, '39': 0.37353401814177617,
'27': 0.39374082474968564, '62.4': 0.47675708579800646
'19': 0.4274654744079354, '200': 1.0, '39': 0.4362451929487654,
'27': 0.47464918475541873, '62': 0.5800852553921563
}
for infile in os.listdir(inDir):
if infile == "cocktail_contribs": continue
Expand Down

0 comments on commit 7660579

Please sign in to comment.