mirror of
https://github.com/PhasicFlow/phasicFlow.git
synced 2025-06-12 16:26:23 +00:00
before checking parallelIO for dictionary
This commit is contained in:
@ -54,7 +54,7 @@ pFlow::realx3Vector pFlow::positionParticles::sortByMortonCode(realx3Vector& pos
|
||||
ind++});
|
||||
}
|
||||
|
||||
INFORMATION<<"Performing morton sorting."<<endINFO;
|
||||
INFORMATION<<"Performing morton sorting."<<END_INFO;
|
||||
std::sort(
|
||||
indMor.begin(),
|
||||
indMor.end(),
|
||||
@ -120,7 +120,11 @@ pFlow::realx3Vector pFlow::positionParticles::getFinalPosition()
|
||||
}
|
||||
|
||||
pFlow::uniquePtr<pFlow::positionParticles>
|
||||
pFlow::positionParticles::create(const dictionary & dict)
|
||||
pFlow::positionParticles::create
|
||||
(
|
||||
systemControl& control,
|
||||
const dictionary & dict
|
||||
)
|
||||
{
|
||||
|
||||
word method = dict.getVal<word>("method");
|
||||
|
@ -127,8 +127,8 @@ public:
|
||||
(
|
||||
positionParticles,
|
||||
dictionary,
|
||||
(const dictionary& dict),
|
||||
(dict)
|
||||
(systemControl& control, const dictionary& dict),
|
||||
(control, dict)
|
||||
);
|
||||
|
||||
virtual ~positionParticles() = default;
|
||||
@ -151,7 +151,7 @@ public:
|
||||
virtual realx3Vector getFinalPosition();
|
||||
|
||||
static
|
||||
uniquePtr<positionParticles> create(const dictionary & dict);
|
||||
uniquePtr<positionParticles> create(systemControl& control, const dictionary & dict);
|
||||
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user