FACT++  1.0
SubscriptionType::SubscriptionType ( )
inline

Dim info constructor.

Definition at line 158 of file datalogger.cc.

References Time::None.

159  {
160  fConv = shared_ptr<Converter>();
161  runNumber = 0;
163  fitsBufferAllocated = false;
164  // Should be the last instantiated to make sure that all other
165  // variables which might be used are already initialized
166  //DIM_REPLACE
167  //dimInfo = shared_ptr<DimStampedInfo>(info);
168  index = 0;
169  increment = 0;
170  }
Time lastReceivedEvent
time of the latest received event
Definition: datalogger.cc:143
bool fitsBufferAllocated
whether or not the fits buffer was allocated already
Definition: datalogger.cc:145
static const Time None
A none-time, this can be used as a simple representation of an invalid time.
Definition: Time.h:34
unsigned int index
Definition: datalogger.cc:151
int32_t runNumber
the current run number used by this subscription
Definition: datalogger.cc:141
shared_ptr< Converter > fConv
the converter for outputting the data according to the format
Definition: datalogger.cc:137
unsigned int increment
counter to know if format has changed during operations
Definition: datalogger.cc:153