1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
/////////////////////////////////////////////////////////////
// //
// Copyright (c) 2003-2011 by The University of Queensland //
// Earth Systems Science Computational Centre (ESSCC) //
// http://www.uq.edu.au/esscc //
// //
// Primary Business: Brisbane, Queensland, Australia //
// Licensed under the Open Software License version 3.0 //
// http://www.opensource.org/licenses/osl-3.0.php //
// //
/////////////////////////////////////////////////////////////
#ifndef __BASICINTERACTION_H
#define __BASICINTERACTION_H
//-- IO includes --
#include <iostream>
/*!
\class BasicInteraction
\brief Class to represent the common part of a pair
interaction, i.e. the IDs of the particles and the
interaction tag
\author Steffen Abe
*/
class BasicInteraction
{
public:
typedef int Id;
typedef int Tag;
private:
Id m_p1;
Id m_p2;
Tag m_tag;
public:
BasicInteraction(Id id1, Id id2,Tag tag=0);
Id first() const {return m_p1;}
Id second() const {return m_p2;}
Id getP1Id() const
{
return first();
}
Id getP2Id() const
{
return second();
}
Tag getTag() const
{
return m_tag;
}
template <typename TmplVisitor>
void visit(TmplVisitor &visitor) const
{
visitor.visitBasicInteraction(*this);
}
friend std::ostream& operator<<(std::ostream&,const BasicInteraction&);
friend class BILess;
};
/*!
\class BILess
\brief function object for the ordering of BasicInteraction
\author Steffen Abe
*/
class BILess
{
public:
bool operator()(const BasicInteraction&,const BasicInteraction&);
};
#endif //__BASICINTERACTION_H
|