#ifndef __JTRIGGER__JSUPERFRAMECLONE1D__ #define __JTRIGGER__JSUPERFRAMECLONE1D__ #include "JTrigger/JModuleHeader.hh" #include "JTrigger/JClone.hh" #include "JTrigger/JSuperFrame1D.hh" /** * \author mdejong */ namespace JTRIGGER {} namespace JPP { using namespace JTRIGGER; } namespace JTRIGGER { /** * Clone of JSuperFrame1D. */ template class JSuperFrameClone1D : public JModuleHeader, public JClone< JSuperFrame1D > { public: /** * Default constructor. */ JSuperFrameClone1D() : JModuleHeader(), JClone< JSuperFrame1D >() {} /** * Constructor. * * \param input 1-dimensional super frame */ JSuperFrameClone1D(const JSuperFrame1D& input) : JModuleHeader(input.getModuleHeader()), JClone< JSuperFrame1D >(input) {} }; } #endif