- Adapted indenation to new agreed upon system

- Added support for second generation scriptcontext based counter
This commit is contained in:
koennecke
2009-02-13 09:00:03 +00:00
parent a3dcad2bfa
commit 91d4af0541
405 changed files with 88101 additions and 88173 deletions

View File

@ -22,7 +22,7 @@ typedef struct {
int h[3], k[3], l[3];
int originalID[3];
double diff;
}IndexSolution;
} IndexSolution;
/**
* \brief To be called before using simidx
@ -55,7 +55,7 @@ void SimIdxSetAngLim(double limit);
* \brief set the spacegroup
* \param spgrp The new spacegroup
*/
void SimIdxSetSpacegroup(T_SgInfo *spgrp);
void SimIdxSetSpacegroup(T_SgInfo * spgrp);
/**
* \brief clear the reflection list
* */
@ -65,7 +65,7 @@ void SimIdxClearReflection();
* \param uvw The coordinates of the scattering vector
*/
void SimIdxAddReflection(double uvw[3]);
typedef void (*OutFunc)(void *userData, char *text);
typedef void (*OutFunc) (void *userData, char *text);
/**
* \brief configure the output for the algorithm
* \param userData A pointer to user data which is passed to the
@ -100,5 +100,3 @@ int SimIdxGetNSolutions();
IndexSolution SimIdxGetSolution(int id);
#endif