/* 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 .
*
*/
#ifndef SRC_REDUCECPPEVEXPORT_HH
#define SRC_REDUCECPPEVEXPORT_HH
#include
#include
#include
#include
#include
#include "API/ReduceBase.hh"
#include "API/PyWrapReduceBase.hh"
#include "DataStructure/ThreeVector.hh"
#include "DataStructure/ImageData/ImageData.hh"
#include "DataStructure/ImageData/Image.hh"
#include "DataStructure/ImageData/CanvasWrapper.hh"
#include "DataStructure/Data.hh"
#include "DataStructure/Spill.hh"
#include "DataStructure/ReconEvent.hh"
#include "Utils/ReduceCppTools.hh"
#include "src/reduce/ReduceCppEVExport/EVExporter.hh"
#include "src/reduce/ReduceCppEVExport/EVHepRepExporter.hh"
namespace MAUS {
class ReduceCppEVExport : public ReduceBase {
public:
ReduceCppEVExport();
~ReduceCppEVExport();
private:
void _birth(const std::string& argJsonConfigDocument);
void _death();
void _process(Data* data);
int _spill_step;
EventViewer::EVExporter *exp;
};
}
#endif // SRC_REDUCECPPEVEXPORT_HH