| Classes | Job Modules | Data Objects | Services | Algorithms | Tools | Packages | Directories | Tracs |

In This Package:

GslError Struct Reference

Helper class to represent GSL errors. More...

#include <GslError.h>

List of all members.


Public Member Functions

 GslError (const std::string &r="", const std::string &f="", const int l=0, const int c=0)
 constructor
bool operator< (const GslError &right) const
 comparison (ordering) criteria

Public Attributes

std::string reason
 error message ('reason')
std::string file
 file name
int line
 line number
int code
 error code (GSL)

Detailed Description

Helper class to represent GSL errors.

Author:
Vanya Belyaev Ivan.Belyaev
Date:
29/04/2002

Definition at line 16 of file GslError.h.


Constructor & Destructor Documentation

GslError::GslError ( const std::string &  r = "",
const std::string &  f = "",
const int  l = 0,
const int  c = 0 
) [inline]

constructor

Definition at line 28 of file GslError.h.

00032     : reason ( r ) , file   ( f ) , line   ( l ) , code   ( c ) {};


Member Function Documentation

bool GslError::operator< ( const GslError right  )  const [inline]

comparison (ordering) criteria

Definition at line 34 of file GslError.h.

00035   {
00036     return 
00037       code         < right.code   ? true  :
00038       right.code   <       code   ? false :
00039       reason       < right.reason ? true  :
00040       right.reason <       reason ? false :
00041       file         < right.file   ? true  :
00042       right.file   <       file   ? false : line < right.line ;  
00043   };  


Member Data Documentation

std::string GslError::reason

error message ('reason')

Definition at line 20 of file GslError.h.

std::string GslError::file

file name

Definition at line 22 of file GslError.h.

int GslError::line

line number

Definition at line 24 of file GslError.h.

int GslError::code

error code (GSL)

Definition at line 26 of file GslError.h.


The documentation for this struct was generated from the following file:
| Classes | Job Modules | Data Objects | Services | Algorithms | Tools | Packages | Directories | Tracs |

Generated on Mon Apr 11 19:58:48 2011 for GaudiGSL by doxygen 1.4.7