Skip to content

Commit d625d20

Browse files
committed
fix println for v0 skimmer
1 parent cd31b5c commit d625d20

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

recon/src/main/java/org/hps/recon/skims/V0Skimmer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ public void setParameters(String parsFileName){
149149
String infilePreResDir = "/org/hps/recon/skims/";
150150
String infile=infilePreResDir+parsFileName;
151151
InputStream inParamStream = this.getClass().getResourceAsStream(infile);
152-
System.out.println(this.getClass().getName()+":: reading in per-sensor per-phase calibs from "+infile);
152+
System.out.println(this.getClass().getName()+":: reading in V0 skimming cuts from "+infile);
153153
BufferedReader reader = new BufferedReader(new InputStreamReader(inParamStream));
154154
String line;
155155
String delims = "[ ]+";// this will split strings between one or more spaces

0 commit comments

Comments
 (0)