Skip to content
Snippets Groups Projects
Commit b9b07ca1 authored by Gareth Tribello's avatar Gareth Tribello
Browse files

Add functionality to calculate the integral of a grid and to use this as a cv

parent d12bb18f
No related branches found
No related tags found
No related merge requests found
...@@ -118,6 +118,8 @@ protected: ...@@ -118,6 +118,8 @@ protected:
double getTolerance() const ; double getTolerance() const ;
/// Return the value of the neighbor list tolerance /// Return the value of the neighbor list tolerance
double getNLTolerance() const ; double getNLTolerance() const ;
/// Return the size of the buffer
unsigned getSizeOfBuffer() const ;
/// Set the size of the data buffer /// Set the size of the data buffer
void resizeBuffer( const unsigned& n ); void resizeBuffer( const unsigned& n );
public: public:
...@@ -237,6 +239,11 @@ ActionWithVessel* Vessel::getAction() const { ...@@ -237,6 +239,11 @@ ActionWithVessel* Vessel::getAction() const {
return action; return action;
} }
inline
unsigned Vessel::getSizeOfBuffer() const {
return bufsize;
}
} }
} }
#endif #endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment