Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -797,8 +797,12 @@ public Event getDecodedEvent(EvioDataEvent rawEvent) {
return getDecodedEvent(rawEvent, -1, -1, null, null);
}

public HipoDataEvent getDecodedDataEvenet(EvioDataEvent rawEvent) {
return new HipoDataEvent(getDecodedEvent(rawEvent), schemaFactory);
public HipoDataEvent getDecodedDataEvent(EvioDataEvent rawEvent) {
return new HipoDataEvent(getDecodedEvent(rawEvent, -1, -1, null, null), schemaFactory);
}

public HipoDataEvent getDecodedDataEvent(EvioDataEvent rawEvent, Double torus, Double solenoid) {
return new HipoDataEvent(getDecodedEvent(rawEvent, -1, -1, torus, solenoid), schemaFactory);
}

}
Loading