Toast++  1.0.2 (r.539)
Forward and inverse modelling in optical tomography
timespec.h
1 // ==========================================================================
2 // Module libfe
3 // File timespec.h
4 // Declaration of class TimeSpec
5 // ==========================================================================
6 
7 #ifndef __TIMESPEC_H
8 #define __TIMESPEC_H
9 
10 // ==========================================================================
11 // class TimeSpec
12 
13 class TimeSpec {
14 public:
15  int nsteps; // number of time steps
16  int skip; // interleave factor
17  double dtim; // time step interval length [ps]
18  double theta; // time step coupling factor
19  friend std::istream& operator>> (std::istream& i, TimeSpec& tspec);
20  friend std::ostream& operator<< (std::ostream& o, TimeSpec& tspec);
21 };
22 
23 #endif // !__TIMESPEC_H
Definition: timespec.h:13