Page MenuHomec4science

Writter.hpp
No OneTemporary

File Metadata

Created
Fri, Jun 7, 00:02

Writter.hpp

/**
* @file Writter.cpp
* @author Sergio Hernandez
* This file is part of the Conjugate Gradient Project
*
* This class writes the final results in file.
*
*/
#ifndef PROJECT_WRITTER_H
#define PROJECT_WRITTER_H
#include <string>
#include <vector>
//#include "Particle.h"
class Writter {
public:
/**
* Writes the positions of the particles in a text file
* in format x y z
* @param fileName
*/
// static void writePositionsText(std::string fileName, int id, std::vector<Particle> particles);
};
#endif //PROJECT_WRITTER_H

Event Timeline