Nymph  v1.5.2
Flow-Based Data Processing Framework
KTData.cc
Go to the documentation of this file.
1 /*
2  * KTData.cc
3  *
4  * Created on: Aug 24, 2012
5  * Author: nsoblath
6  */
7 
8 #include "KTData.hh"
9 
10 namespace Nymph
11 {
12  const std::string KTData::sName("data");
13 
16  fCounter(0),
17  fLastData(false),
18  fCutStatus()
19  {
20  }
21 
22  KTData::KTData(const KTData& orig) :
23  KTExtensibleData< KTData >(orig),
24  fCounter(orig.fCounter),
25  fLastData(orig.fLastData),
26  fCutStatus(orig.fCutStatus)
27  {}
28 
30  {}
31 
32 } /* namespace Nymph */
static const std::string sName
Definition: KTData.hh:64