/* This file is part of MAUS: http://micewww.pp.rl.ac.uk:8080/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 . * */ /** @class SciFiBasePRTrack Base class for scifi pattern recogntion tracks. */ #ifndef _SRC_COMMON_CPP_DATASTRUCTURE_SCIFIBASEPRTRACK_HH_ #define _SRC_COMMON_CPP_DATASTRUCTURE_SCIFIBASEPRTRACK_HH_ // C++ headers #include // MAUS headers #include "src/common_cpp/Utils/VersionNumber.hh" namespace MAUS { class SciFiBasePRTrack { public: /** Default constructor */ SciFiBasePRTrack(); /** Default destructor */ virtual ~SciFiBasePRTrack(); MAUS_VERSIONED_CLASS_DEF(SciFiBasePRTrack) }; typedef std::vector SciFiBasePRTrackPArray; typedef std::vector SciFiBasePRTrackArray; } // ~namespace MAUS #endif