Changes in src/linkedcell.cpp [97b825:bcf653]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/linkedcell.cpp
r97b825 rbcf653 1 /* 2 * Project: MoleCuilder 3 * Description: creates and alters molecular systems 4 * Copyright (C) 2010 University of Bonn. All rights reserved. 5 * Please see the LICENSE file or "Copyright notice" in builder.cpp for details. 6 */ 7 1 8 /** \file linkedcell.cpp 2 9 * … … 4 11 * 5 12 */ 13 14 // include config.h 15 #ifdef HAVE_CONFIG_H 16 #include <config.h> 17 #endif 6 18 7 19 #include "Helpers/MemDebug.hpp" … … 23 35 LinkedCell::LinkedCell() : 24 36 LC(NULL), 25 index(-1),26 RADIUS(0.)37 RADIUS(0.), 38 index(-1) 27 39 { 28 40 for(int i=0;i<NDIM;i++) … … 37 49 */ 38 50 LinkedCell::LinkedCell(const PointCloud * const set, const double radius) : 51 LC(NULL), 39 52 RADIUS(radius), 40 LC(NULL),41 53 index(-1) 42 54 { … … 113 125 */ 114 126 LinkedCell::LinkedCell(LinkedNodes *set, const double radius) : 127 LC(NULL), 115 128 RADIUS(radius), 116 LC(NULL),117 129 index(-1) 118 130 {
Note:
See TracChangeset
for help on using the changeset viewer.