Exemple #1
0
def main():
    dy = rb('event_output/DytranAnalysis.bin')
    aco = rb('event_output/AcousticAnalysis.bin')

    dy_t0 = dy['dytran_fitparams'][:, 0]
    dy_t0 -= 400000
    dy_t0 *= 4e-7

    aco_t0 = aco['bubble_t0']

    t0_diff = dy_t0 - aco_t0

    plt.plot(aco['bubble_loudness'][:, 1], t0_diff, 'bo')
    #plt.axis([0,len(t0_diff), -.1, .1])
    plt.semilogx()
    plt.show()
    return
Exemple #2
0
def loadrecon5(runid, ev):
    recondir='/Users/reustudent/SBCcode/UserCode/jjimenez/output'
    return rb(os.path.join(recondir,'PMTfastDAQalignment_all.bin'))
Exemple #3
0
def loadrecon8(runid, ev):
    recondir='/Users/reustudent/SBCcode/UserCode/jjimenez/output'
    return rb(os.path.join(recondir,'TimingAnalysis_all.bin'))
Exemple #4
0
def loadrecon4(runid, ev):
    recondir='/Users/reustudent/SBCcode/UserCode/jjimenez/output'
    return rb(os.path.join(recondir,'HumanGetBub_all.bin'))