/* This file is part of MAUS: http://micewww.pp.rl.ac.uk/projects/maus * * MAUS is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * MAUS is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with MAUS. If not, see . */ #ifndef _SRC_COMMON_CPP_DATASTRUCTURE_TOFDAQ_ #define _SRC_COMMON_CPP_DATASTRUCTURE_TOFDAQ_ #include #include "src/common_cpp/Utils/VersionNumber.hh" #include "src/common_cpp/DataStructure/V1290.hh" #include "src/common_cpp/DataStructure/V1724.hh" namespace MAUS { // Needed for ROOT typedef std::vector V1724Array; typedef std::vector V1290Array; /** @class TOFDaq comment * * @var V1724 <--description--> * @var V1290 <--description--> */ class TOFDaq { public: /** Default constructor - initialises to 0/NULL */ TOFDaq(); /** Copy constructor - any pointers are deep copied */ TOFDaq(const TOFDaq& _tofdaq); /** Equality operator - any pointers are deep copied */ TOFDaq& operator=(const TOFDaq& _tofdaq); /** Destructor - any member pointers are deleted */ virtual ~TOFDaq(); /** Returns V1724Array */ V1724Array GetV1724Array() const; /** Get an element from V1724Array (needed for PyROOT) */ V1724 GetV1724ArrayElement(size_t index) const; /** Get size of V1724Array (needed for PyROOT) */ size_t GetV1724ArraySize() const; /** Sets V1724Array */ void SetV1724Array(V1724Array V1724); /** Returns V1290Array */ V1290Array GetV1290Array() const; /** Get an element from V1290Array (needed for PyROOT) */ V1290 GetV1290ArrayElement(size_t index) const; /** Get size of V1290Array (needed for PyROOT) */ size_t GetV1290ArraySize() const; /** Sets V1290Array */ void SetV1290Array(V1290Array V1290); private: V1724Array _V1724; V1290Array _V1290; MAUS_VERSIONED_CLASS_DEF(TOFDaq) }; } #endif // _SRC_COMMON_CPP_DATASTRUCTURE_TOFDAQ_