ls1-MarDyn
ls1-MarDyn molecular dynamics code
L2PCellProcessor.h
1/*
2 * L2PCellProcessor.h
3 *
4 * Created on: Feb 10, 2015
5 * Author: tchipev
6 */
7
8#ifndef L2PCELLPROCESSOR_H_
9#define L2PCELLPROCESSOR_H_
10#include "bhfmm/cellProcessors/SimpleCellProcessor.h"
11#include <stdlib.h>
12
13namespace bhfmm {
14
15class PseudoParticleContainer;
16
18public:
19 L2PCellProcessor(PseudoParticleContainer * pseudoParticleContainer);
21
22 void initTraversal();
24 void endTraversal();
25
26 void printTimers();
27
28private:
29 PseudoParticleContainer* const _pseudoParticleContainer;
30};
31
32} /* namespace bhfmm */
33
34#endif /* L2PCELLPROCESSOR_H_ */
Definition: L2PCellProcessor.h:17
void initTraversal()
Definition: L2PCellProcessor.cpp:29
void endTraversal()
Definition: L2PCellProcessor.cpp:61
void processCell(ParticleCellPointers &cell)
Definition: L2PCellProcessor.cpp:41
Definition: ParticleCellPointers.h:44
Definition: PseudoParticleContainer.h:46
Definition: SimpleCellProcessor.h:23
Definition: L2PCellProcessor.cpp:15