-
berenger-bramas authored
Here it the new src dir with some minor changes in CMake files. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/scalfmm/scalfmm/trunk@61 2616d619-271b-44dc-8df4-d4a8f33a7222
berenger-bramas authoredHere it the new src dir with some minor changes in CMake files. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/scalfmm/scalfmm/trunk@61 2616d619-271b-44dc-8df4-d4a8f33a7222
FTestCell.hpp 909 B
#ifndef FTESTCELL_HPP
#define FTESTCELL_HPP
// /!\ Please, you must read the license at the bottom of this page
#include "FBasicCell.hpp"
/**
* @author Berenger Bramas (berenger.bramas@inria.fr)
* @class FBasicCell
* Please read the license
*
* This class is used in the FTestKernels, please
* look at this class to know whit it is.
*/
class FTestCell : public FBasicCell {
// To store data during upward and downward pass
long dataUp, dataDown;
public:
FTestCell(): dataUp(0) , dataDown(0){
}
/** Default destructor */
virtual ~FTestCell(){
}
long getDataUp() const {
return this->dataUp;
}
void setDataUp(const long inData){
this->dataUp = inData;
}
long getDataDown() const {
return this->dataDown;
}
void setDataDown(const long inData){
this->dataDown = inData;
}
};
#endif //FTESTCELL_HPP
// [--LICENSE--]