Skip to content
Open
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 @@ -310,7 +310,7 @@ public void processEvent(DataEvent event){
}

public void processFile(String file, String output){
this.processFile(file, output, -1, -1);
this.processFile(file, output, 0, 0);
}

public void processEvent(DataEvent event, HipoDataSync writer) {
Expand Down Expand Up @@ -396,8 +396,8 @@ protected static OptionParser getParser() {
parser.addRequired("-i","input.evio/hipo");
parser.setRequiresInputList(false);
parser.addOption("-c","0","use default configuration [0 - no, 1 - yes/default, 2 - all services] ");
parser.addOption("-s","-1","number of events to skip");
parser.addOption("-n","-1","number of events to process");
parser.addOption("-s","0","number of events to skip");
parser.addOption("-n","0","number of events to process");
parser.addOption("-y","0","yaml file");
parser.addOption("-u","true","update dictionary from writer ? ");
parser.addOption("-S",null,"schema directory");
Expand Down
Loading