Skip to content

Commit acb5a5f

Browse files
Update load_particle.hpp
1 parent 19cc7a5 commit acb5a5f

1 file changed

Lines changed: 0 additions & 5 deletions

File tree

src/io/load_particle.hpp

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,6 @@ std::vector<Particle> LoadParticlesFromFile(const std::string& filename)
2222
Particle temp;
2323
// Match this to the file columns: x y z vx vy vz m type
2424
while (in >> temp.x >> temp.y >> temp.z >> temp.vx >> temp.vy >> temp.vz >> temp.m >> temp.type) {
25-
26-
temp.ax = 0;
27-
temp.ay = 0;
28-
temp.az = 0;
29-
3025
p.push_back(temp);
3126
}
3227

0 commit comments

Comments
 (0)