示例#1
0
def max(run, cut=2.0):
    mean, width = _calib[fill(run)]
    return mean + cut * width
示例#2
0
def min(run, cut=-1.0):
    mean, width = _calib[fill(run)]
    return mean + cut * width
示例#3
0
def shift(run, nsigpi):
    offset = _calib[fill(run)][0]
    return nsigpi - offset
示例#4
0
文件: pid.py 项目: kocolosk/analysis
def max(run, cut=2.0):
    mean, width = _calib[fill(run)]
    return mean + cut*width
示例#5
0
文件: pid.py 项目: kocolosk/analysis
def min(run, cut=-1.0):
    mean, width = _calib[fill(run)]
    return mean + cut*width
示例#6
0
文件: pid.py 项目: kocolosk/analysis
def shift(run, nsigpi):
    offset = _calib[fill(run)][0]
    return nsigpi - offset