Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -97,22 +97,22 @@ typedef Particles<ParticleDescription<
SuperCellSize,
AttributeSeqElectrons,
ParticleFlagsElectrons,
typename MakeSeq<CommunicationId<PAR_ELECTRONS>,MemoryFactor<2> >::type >
typename MakeSeq<CommunicationId<PAR_ELECTRONS> >::type >
> PIC_Electrons;

/*--------------------------- ions -------------------------------------------*/

/*! Specify (chemical) element
*
*
* Proton and neutron numbers define the chemical element that the ion species
* is based on. This value can be non-integer for physical models taking
* charge shielding effects into account.
* is based on. This value can be non-integer for physical models taking
* charge shielding effects into account.
* @see http://en.wikipedia.org/wiki/Effective_nuclear_charge
*
* It is wrapped into a struct because of C++ restricting floats from being
* template arguments.
*
* Do not forget to set the correct mass of the atom in
*
* It is wrapped into a struct because of C++ restricting floats from being
* template arguments.
*
* Do not forget to set the correct mass of the atom in
* @see physicalConstants.param !
*/
struct Helium
Expand All @@ -122,13 +122,13 @@ struct Helium
};

/*! Ionization Model Configuration ----------------------------------------
*
*
* For development purposes: ---------------------------------------------
* - None : no particle is ionized
* - BSI : simple barrier suppression ionization
*
*
* Usage: Add a flag to the list of particle flags that has the following structure
*
*
* ionizer<IonizationModel<Species2BCreated> >
*/

Expand All @@ -137,7 +137,7 @@ typedef bmpl::vector<
particlePusher<UsedParticlePusher>,
shape<UsedParticleShape>,
interpolation<UsedField2Particle>,
current<UsedParticleCurrentSolver>,
current<UsedParticleCurrentSolver>,
#if(PARAM_IONIZATION == 1)
ionizer<particles::ionization::BSI<PIC_Electrons> >,
#endif
Expand All @@ -150,7 +150,7 @@ typedef Particles<ParticleDescription<
SuperCellSize,
AttributeSeqIons,
ParticleFlagsIons,
typename MakeSeq<CommunicationId<PAR_IONS>,MemoryFactor<2> >::type >
typename MakeSeq<CommunicationId<PAR_IONS> >::type >
> PIC_Ions;

/*########################### end species ####################################*/
Expand Down
7 changes: 0 additions & 7 deletions src/libPMacc/include/particles/ParticlesBase.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -146,11 +146,6 @@ class ParticlesBase : public SimulationFieldHelper<MappingDesc>
*/
void insertParticles(uint32_t exchangeType);

ParticlesBoxType getHostParticlesBox()
{
return particlesBuffer->getHostParticleBox();
}

ParticlesBoxType getDeviceParticlesBox()
{
return particlesBuffer->getDeviceParticleBox();
Expand All @@ -174,5 +169,3 @@ class ParticlesBase : public SimulationFieldHelper<MappingDesc>
} //namespace PMacc

#include "particles/ParticlesBase.tpp"


115 changes: 0 additions & 115 deletions src/libPMacc/include/particles/memory/boxes/HeapDataBox.hpp

This file was deleted.

Loading