/* 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_TRIGGERREQUEST_ #define _SRC_COMMON_CPP_DATASTRUCTURE_TRIGGERREQUEST_ #include #include "src/common_cpp/Utils/VersionNumber.hh" #include "src/common_cpp/DataStructure/V1290.hh" namespace MAUS { // Needed for ROOT typedef std::vector V1290Array; /** @class TriggerRequest comment * * @var V1290 <--description--> */ class TriggerRequest { public: /** Default constructor - initialises to 0/NULL */ TriggerRequest(); /** Copy constructor - any pointers are deep copied */ TriggerRequest(const TriggerRequest& _triggerrequest); /** Equality operator - any pointers are deep copied */ TriggerRequest& operator=(const TriggerRequest& _triggerrequest); /** Destructor - any member pointers are deleted */ virtual ~TriggerRequest(); /** 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: V1290Array _V1290; MAUS_VERSIONED_CLASS_DEF(TriggerRequest) }; } #endif // _SRC_COMMON_CPP_DATASTRUCTURE_TRIGGERREQUEST_