Skip to content

Commit

Permalink
Add line to help
Browse files Browse the repository at this point in the history
  • Loading branch information
paolafer committed Nov 23, 2023
1 parent b3eede4 commit 3988532
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions source/nexus.cc
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ void PrintUsage()
G4cerr << "Available options:" << G4endl;
G4cerr << " -b, --batch : Run in batch mode (default)\n"
<< " -i, --interactive : Run in interactive mode\n"
<< " -n, --nevents : Number of events to simulate"
<< " -n, --nevents : Number of events to simulate\n"
<< " -p, --precision : Number of significant figures in verbosity"
<< G4endl;
exit(EXIT_FAILURE);
}
Expand All @@ -41,7 +42,7 @@ G4int main(int argc, char** argv)

G4bool batch = true;
G4int nevents = 0;
G4int precision = 0;
G4int precision = -1;

static struct option long_options[] =
{
Expand Down

0 comments on commit 3988532

Please sign in to comment.