Skip to content
Snippets Groups Projects
Commit 11751521 authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

remove dead code

parent 7a05d87f
No related branches found
No related tags found
No related merge requests found
......@@ -111,7 +111,6 @@ void ComputeForceTally::pair_tally_callback(int i, int j, int nlocal, int newton
double, double, double fpair,
double dx, double dy, double dz)
{
const int ntotal = atom->nlocal + atom->nghost;
const int * const mask = atom->mask;
if ( ((mask[i] & groupbit) && (mask[j] & groupbit2))
......
......@@ -121,7 +121,6 @@ void ComputeHeatFluxTally::pair_tally_callback(int i, int j, int nlocal, int new
double evdwl, double ecoul, double fpair,
double dx, double dy, double dz)
{
const int ntotal = atom->nlocal + atom->nghost;
const int * const mask = atom->mask;
if ( ((mask[i] & groupbit) && (mask[j] & groupbit2))
......
......@@ -109,7 +109,6 @@ void ComputePETally::pair_tally_callback(int i, int j, int nlocal, int newton,
double evdwl, double ecoul, double,
double, double, double)
{
const int ntotal = atom->nlocal + atom->nghost;
const int * const mask = atom->mask;
if ( ((mask[i] & groupbit) && (mask[j] & groupbit2))
......
......@@ -113,7 +113,6 @@ void ComputeStressTally::pair_tally_callback(int i, int j, int nlocal, int newto
double, double, double fpair,
double dx, double dy, double dz)
{
const int ntotal = atom->nlocal + atom->nghost;
const int * const mask = atom->mask;
if ( ((mask[i] & groupbit) && (mask[j] & groupbit2))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment