/* 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 MapCppTrackerRecon * Digitize events by running Tracker electronics simulation. * */ #ifndef _SRC_MAP_MAPCPPTrackerPRSeed_H_ #define _SRC_MAP_MAPCPPTrackerPRSeed_H_ // C headers #include #include #include // C++ headers #include #include #include #include #include // Other headers #include "Utils/Squeak.hh" #include "Config/MiceModule.hh" #include "src/common_cpp/Utils/CppErrorHandler.hh" #include "src/common_cpp/Utils/JsonWrapper.hh" #include "src/common_cpp/DataStructure/Spill.hh" #include "src/common_cpp/DataStructure/SciFiEvent.hh" #include "src/common_cpp/DataStructure/SciFiHelicalPRTrack.hh" #include "src/common_cpp/DataStructure/SciFiStraightPRTrack.hh" #include "src/common_cpp/Recon/SciFi/RealDataDigitization.hh" #include "src/common_cpp/DataStructure/SciFiDigit.hh" #include "src/common_cpp/API/MapBase.hh" namespace MAUS { class MapCppTrackerPRSeed : public MapBase { public: MapCppTrackerPRSeed(); ~MapCppTrackerPRSeed(); private: /** Sets up the worker * * \param argJsonConfigDocument a JSON document with * the configuration. */ void _birth(const std::string& argJsonConfigDocument); /** Shutdowns the worker * * This takes no arguments and does nothing */ void _death(); /** process MAUS spill object * * Receive a document with MC hits and return * a document with digits * \param document a MAUS data object for a MICE spill */ void _process(Data* document) const; private: SciFiSeed* _make_helical_seed(SciFiHelicalPRTrack* h) const; SciFiSeed* _make_straight_seed(SciFiStraightPRTrack* s) const; /// This will contain the configuration Json::Value _configJSON; /// This will contain the root value after parsing Spill* _spill_cpp; /// JsonCpp setup Json::Reader reader; /// Cut value for npe. }; #endif } // ~namespace MAUS