This file is indexed.

/usr/include/liggghts/fix_multisphere.h is in libliggghts-dev 3.5.0+repack1-10.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
/* ----------------------------------------------------------------------
    This is the

    ██╗     ██╗ ██████╗  ██████╗  ██████╗ ██╗  ██╗████████╗███████╗
    ██║     ██║██╔════╝ ██╔════╝ ██╔════╝ ██║  ██║╚══██╔══╝██╔════╝
    ██║     ██║██║  ███╗██║  ███╗██║  ███╗███████║   ██║   ███████╗
    ██║     ██║██║   ██║██║   ██║██║   ██║██╔══██║   ██║   ╚════██║
    ███████╗██║╚██████╔╝╚██████╔╝╚██████╔╝██║  ██║   ██║   ███████║
    ╚══════╝╚═╝ ╚═════╝  ╚═════╝  ╚═════╝ ╚═╝  ╚═╝   ╚═╝   ╚══════╝®

    DEM simulation engine, released by
    DCS Computing Gmbh, Linz, Austria
    http://www.dcs-computing.com, office@dcs-computing.com

    LIGGGHTS® is part of CFDEM®project:
    http://www.liggghts.com | http://www.cfdem.com

    Core developer and main author:
    Christoph Kloss, christoph.kloss@dcs-computing.com

    LIGGGHTS® is open-source, distributed under the terms of the GNU Public
    License, version 2 or later. It is distributed in the hope that it will
    be useful, but WITHOUT ANY WARRANTY; without even the implied warranty
    of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. You should have
    received a copy of the GNU General Public License along with LIGGGHTS®.
    If not, see http://www.gnu.org/licenses . See also top-level README
    and LICENSE files.

    LIGGGHTS® and CFDEM® are registered trade marks of DCS Computing GmbH,
    the producer of the LIGGGHTS® software and the CFDEM®coupling software
    See http://www.cfdem.com/terms-trademark-policy for details.

-------------------------------------------------------------------------
    Contributing author and copyright for this file:
    (if not contributing author is listed, this file has been contributed
    by the core developer)

    Copyright 2012-     DCS Computing GmbH, Linz
    Copyright 2009-2012 JKU Linz
------------------------------------------------------------------------- */

#ifdef FIX_CLASS

FixStyle(multisphere,FixMultisphere)
FixStyle(multisphere/nointegration,FixMultisphere)

#else

#ifndef LMP_FIX_MULTISPHERE_H
#define LMP_FIX_MULTISPHERE_H

#include "fix.h"
#include "math_extra_liggghts.h"
#include "multisphere_parallel.h"
#include "fix_property_atom.h"
#include "fix_remove.h"
#include "fix_heat_gran.h"
#include "atom.h"
#include "comm.h"

using namespace std;

namespace LAMMPS_NS {

enum
{
    MS_COMM_UNDEFINED,
    MS_COMM_FW_BODY,
    MS_COMM_FW_IMAGE_DISPLACE,
    MS_COMM_FW_V_OMEGA,
    MS_COMM_FW_F_TORQUE,
    MS_COMM_FW_TEMP,
    MS_COMM_REV_X_V_OMEGA,
    MS_COMM_REV_V_OMEGA,
    MS_COMM_REV_IMAGE,
    MS_COMM_REV_DISPLACE,
    MS_COMM_REV_TEMP
};

class FixMultisphere : public Fix
{
    friend class SetMultisphere;

     public:    

      FixMultisphere(class LAMMPS *, int, char **);
      virtual ~FixMultisphere();

      void post_create();
      void pre_delete(bool unfixflag);
      virtual int setmask();
      virtual void init();

      virtual void setup(int);
      virtual void setup_pre_force(int);
      virtual void setup_pre_exchange();
      virtual void setup_pre_neighbor();

      virtual double extend_cut_ghost();

      void initial_integrate(int);
      virtual void pre_force(int);
      void final_integrate();
      virtual void calc_force();

      void add_body_finalize();

      double memory_usage();
      void grow_arrays(int);
      void copy_arrays(int i, int j, int delflag);

      void pre_exchange();
      void pre_neighbor();
      void set_arrays(int);

      int size_restart(int nlocal);
      int maxsize_restart();

      void write_restart(FILE *fp);
      void restart(char *buf);

      // *************************************
      #include "fix_multisphere_comm_I.h"
      // *************************************

      int dof(int);
      double ** get_dump_ref(int &nb, int &nprop, char* prop);
      double max_r_bound();

      void add_remove_callback(FixRemove *ptr);

      // public inline access

      void *extract(const char *name, int &len1, int &len2)
      {
          if (strcmp(name,"body") == 0)
          {
              len1 = atom->tag_max();
              len2 = 1;
              return (void *) body_;
          }
          return multisphere_.extract(name,len1,len2);
      }

      inline class Multisphere& data()
      { return multisphere_;}

      inline class FixPropertyAtom* fix_delflag()
      { return fix_delflag_; }

      inline int belongs_to(int i) const
      { return body_[i]; }

      inline int n_body()
      { return data().n_body(); }

      inline int n_body_all()
      { return data().n_body_all(); }

      inline int tag_max_body()
      { return data().tag_max_body(); }

      inline int ntypes()
      { return ntypes_; }

      inline double* vclump()
      { return Vclump_; }

      inline double extract_ke()
      { return data().extract_ke(); }

      inline double extract_rke()
      { return data().extract_rke(); }

      inline void set_v_body_from_atom_index(int iatom,double *vel)
      {if(body_[iatom] >= 0) multisphere_.set_v_body(body_[iatom],vel); }

      inline void set_omega_body_from_atom_index(int iatom,double *omega)
      {if(body_[iatom] >= 0) multisphere_.set_omega_body(body_[iatom],omega); }

      inline void set_body_displace(int i,double *_displace,int body_id)
      { body_[i] = body_id; vectorCopy3D(_displace,displace_[i]); }

      int calc_n_steps(int iatom,double *p_ref,double *normalvec,double *v_normal)
      { return multisphere_.calc_n_steps(iatom,body_[iatom],p_ref,normalvec,v_normal); }

      void release(int iatom,double *v_toInsert,double *omega_toInsert)
      { return multisphere_.release(iatom,body_[iatom],v_toInsert,omega_toInsert); }

      bool allow_group_and_set()
      { return allow_group_and_set_; }

      void scale_displace(int i, double factor)
      { vectorScalarMult3D(displace_[i],factor); }

      inline void rev_comm_displace()
      {
        rev_comm_flag_ = MS_COMM_REV_DISPLACE;
        reverse_comm();
      }

     protected:

      inline int map(int i)
      { return data().map(i); }

      inline int tag(int i)
      { return data().tag(i); }

      void set_xv();
      void set_xv(int);
      void set_v();
      void set_v(int);

      bool do_modify_body_forces_torques_;
      virtual void modify_body_forces_torques() {}

      class Multisphere &multisphere_;
      class FixPropertyAtom *fix_corner_ghost_;
      class FixPropertyAtom *fix_delflag_;
      class FixPropertyAtom *fix_existflag_;
      class FixGravity *fix_gravity_;
      FixHeatGran *fix_heat_;

      //int comm_di_;
      int fw_comm_flag_;
      int rev_comm_flag_;

      // per-atom properties handled by this fix
      int *body_;                // which body each atom is part of (-1 if none)
      double **displace_;        // displacement of each atom in body coords

      double dtv,dtf,dtq;

      std::vector<FixRemove*> fix_remove_;

      // MS communication
      int ntypes_;
      double *Vclump_;

      bool allow_group_and_set_;
      bool allow_heatsource_;
};

}

#endif
#endif