/* 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_UTILITIES_EVENT_VIEWER_EVHEPREPEXPORTER_HH_
#define _SRC_UTILITIES_EVENT_VIEWER_EVHEPREPEXPORTER_HH_
#include
#include
#include
#include "src/utilities/event-viewer/EVEvent.hh"
#include "third_party/install/heprep/HepRepXMLWriter.hh"
#include "src/legacy/Config/MiceModule.hh"
#include "VectorTransform.h"
namespace EventViewer {
/** @class EVHepRepExporter
* @author M. Savic
* @brief Combines EVEvent data with detector geometry and exports it to HepRep file
*/
class EVHepRepExporter {
public:
explicit EVHepRepExporter(EVEvent evEvent);
void Export(int display);
private:
EVEvent event;
MiceModule *mm;
std::vector mmTrackerUS, mmTrackerDS;
int Concatenate(std::string& geometryFileName, std::string& dataFileName,
std::string& outFileName);
};
} // ~namespace EventViewer
#endif