Mixed Data Coincidence Analysis Software 1.0
A program to analyze files produced by the EventMixer software.
Public Member Functions | Public Attributes
CommandLineArgument Class Reference

Represents an argument the program expects on the command line. More...

#include <CommandLineArgument.hh>

List of all members.

Public Member Functions

 CommandLineArgument ()
 Constructor, sets the members to default values.
 CommandLineArgument (string mFlag, int mNumberOfArguments)
 Constructor, sets the members to the values sent.

Public Attributes

string flag
 The flag (without the -) which should be expected.
int numberOfArguments
 The number of arguments to be expected.

Detailed Description

Represents an argument the program expects on the command line.

Sent to the CommandLineInterpreter, this class will throw a CommandLineException if it encounters a flag it does not recognize.

Author:
Rikard Lundmark

Definition at line 25 of file CommandLineArgument.hh.


Constructor & Destructor Documentation

CommandLineArgument::CommandLineArgument ( string  mFlag,
int  mNumberOfArguments 
)

Constructor, sets the members to the values sent.

Parameters:
mFlagflag = mFlag
mNumberOfArgumentsnumberOfArguments = mNumberOfArguments

Definition at line 8 of file CommandLineArgument.cc.

References flag, and numberOfArguments.

{
  flag=mFlag;
  numberOfArguments = mNumberOfArguments;
}

The documentation for this class was generated from the following files:
 All Classes Files Functions Variables Defines

Back to the main page of the Precalibrated Ion Beam Identification Detector project

Created by Rikard Lundmark