Skip to content

Commit 6b83691

Browse files
committed
fix
1 parent 3909c53 commit 6b83691

2 files changed

Lines changed: 2 additions & 8 deletions

File tree

common-tools/clara-io/pom.xml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,6 @@
4848
<version>14.2.0-SNAPSHOT</version>
4949
</dependency>
5050

51-
<dependency>
52-
<groupId>org.jlab.clas</groupId>
53-
<artifactId>clas-analysis</artifactId>
54-
<version>14.2.0-SNAPSHOT</version>
55-
</dependency>
56-
5751
<dependency>
5852
<groupId>org.jlab.clas</groupId>
5953
<artifactId>clas-utils</artifactId>

common-tools/clara-io/src/main/java/org/jlab/io/clara/Clas12Writer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
import java.util.List;
66
import java.util.TreeMap;
77
import java.util.TreeSet;
8-
import org.jlab.analysis.postprocess.Processor;
98
import org.jlab.clara.std.services.EventWriterException;
109
import org.jlab.detector.calib.utils.ConstantsManager;
1110
import org.jlab.detector.decode.CLASDecoder4;
1211
import org.jlab.detector.helicity.HelicitySequence;
1312
import org.jlab.detector.helicity.HelicitySequenceDelayed;
1413
import org.jlab.detector.helicity.HelicityState;
1514
import org.jlab.detector.scalers.DaqScalersSequence;
15+
import org.jlab.detector.serial.PostProcessor;
1616
import org.jlab.jnp.hipo4.data.Bank;
1717
import org.jlab.jnp.hipo4.data.Event;
1818
import org.jlab.jnp.hipo4.data.SchemaFactory;
@@ -148,7 +148,7 @@ private void postprocess() {
148148
int d = conman.getConstants(getRunNumber(), "/runcontrol/helicity").getIntValue("delay",0,0,0);
149149
HelicitySequenceDelayed helicity = new HelicitySequenceDelayed(d);
150150
helicity.addStream(helicities);
151-
Processor p = new Processor(List.of(filename), fullSchema, helicity, scalers);
151+
PostProcessor p = new PostProcessor(List.of(filename), fullSchema, helicity, scalers);
152152
HipoReader r = new HipoReader();
153153
r.open(filename);
154154
Event e = new Event();

0 commit comments

Comments
 (0)