-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fa90b17
commit be5affd
Showing
2 changed files
with
1,646 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/** | ||
* \file retqss_debug.h | ||
* \brief Debugging functions | ||
* | ||
* Assorted debug functionality only compiled if flag RETQSS_DEBUG is defined | ||
* at compilation time. | ||
*/ | ||
|
||
#ifndef _RETQSS_DEBUG_H_ | ||
#define _RETQSS_DEBUG_H_ | ||
|
||
#include "retqss_types.hh" | ||
#include "retqss_volume.hh" | ||
|
||
namespace retQSS | ||
{ | ||
|
||
/** | ||
* \brief Save particle trajectories to Geomview files. | ||
* | ||
* Save particle trajectories for each volume traversed by particle \f$p\f$ in | ||
* a set of files compatible with Geomview. | ||
* | ||
* \param index Index of volume traversed. | ||
* \param volume Current volume. | ||
* \param points Sequence of points inside \c volume which compose \f$p\f$'s | ||
* trajectory inside \c volume. | ||
* \param path Path where files will be saved. | ||
*/ | ||
void trajectory_to_geomview( | ||
retQSS::Internal_ParticleID p, | ||
int index, | ||
retQSS::Volume *volume, | ||
retQSS::PointList *points, | ||
const char *path =NULL); | ||
|
||
} | ||
|
||
#endif |
Oops, something went wrong.