ESyS-Particle  2.3
pi_storage_eb.h
Go to the documentation of this file.
1 // //
3 // Copyright (c) 2003-2014 by The University of Queensland //
4 // Centre for Geoscience Computing //
5 // http://earth.uq.edu.au/centre-geoscience-computing //
6 // //
7 // Primary Business: Brisbane, Queensland, Australia //
8 // Licensed under the Open Software License version 3.0 //
9 // http://www.opensource.org/licenses/osl-3.0.php //
10 // //
12 
13 #ifndef __PARALLEL_INTERACTION_STORAGE_EB_H
14 #define __PARALLEL_INTERACTION_STORAGE_EB_H
15 
16 //--- project includes ---
17 #include "pis/pi_storage_e.h"
18 
19 //--- STL includes ---
20 #include <vector>
21 
22 //--- IO includes ---
23 
28 template<typename P,typename I>
30 {
31  public:
32  // typedef I ParallelInteractionStorage_EB::interaction_type;
36 
37  public:
38  ParallelInteractionStorage_EB(AParallelParticleArray*,const typename I::ParameterType&);
39 
40  virtual bool update();
41  void setUnbreakable(bool);
42  virtual void calcHeatTrans();
43  virtual void saveCheckPointData(std::ostream &oStream);
44  virtual void loadCheckPointData(std::istream &iStream);
45  virtual void saveSnapShotData(std::ostream&);
46 };
47 
48 #include "pis/pi_storage_eb.hpp"
49 
50 #endif // __PARALLEL_INTERACTION_STORAGE_EB_H
virtual bool update()
Definition: pi_storage_eb.hpp:23
void setUnbreakable(bool)
Definition: pi_storage_eb.hpp:168
virtual void calcHeatTrans()
Definition: pi_storage_eb.hpp:147
virtual void saveSnapShotData(std::ostream &)
Definition: pi_storage_eb.hpp:55
virtual void loadCheckPointData(std::istream &iStream)
Definition: pi_storage_eb.hpp:107
bool m_unbreakable
Definition: pi_storage_eb.h:35
ParallelInteractionStorage_E< P, I > Inherited
Definition: pi_storage_eb.h:33
parallel storage array with exchange for bonded/breakable interactions
Definition: pi_storage_eb.h:29
parallel interaction storage array with exchange
Definition: pi_storage_e.h:36
abstract base class for parallel particle storage array
Definition: pp_array.h:41
ParallelInteractionStorage_EB(AParallelParticleArray *, const typename I::ParameterType &)
Definition: pi_storage_eb.hpp:14
virtual void saveCheckPointData(std::ostream &oStream)
Definition: pi_storage_eb.hpp:79
Inherited::InteractionIterator InteractionIterator
Definition: pi_storage_eb.h:34