Skip to content

Commit b995a8f

Browse files
authored
fix: CVT pT timeline should be mean pT, not peak pT (#403)
1 parent fb0d36b commit b995a8f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/org/jlab/clas/timeline/analysis/cvt/cvt_pt.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def write() {
3030
out.mkdir('/'+it.run)
3131
out.cd('/'+it.run)
3232
out.addDataSet(it.h1)
33-
grtl.addPoint(it.run, it.h1.getDataX(it.h1.getMaximumBin()), 0, 0)
33+
grtl.addPoint(it.run, it.h1.getMean(), 0, 0)
3434
}
3535

3636
out.mkdir('/timelines')

0 commit comments

Comments
 (0)