From 11751521e7886db55d1d0fec787bcd0a12c997ee Mon Sep 17 00:00:00 2001
From: Axel Kohlmeyer <akohlmey@gmail.com>
Date: Mon, 12 Jun 2017 22:49:31 -0400
Subject: [PATCH] remove dead code

---
 src/USER-TALLY/compute_force_tally.cpp     | 1 -
 src/USER-TALLY/compute_heat_flux_tally.cpp | 1 -
 src/USER-TALLY/compute_pe_tally.cpp        | 1 -
 src/USER-TALLY/compute_stress_tally.cpp    | 1 -
 4 files changed, 4 deletions(-)

diff --git a/src/USER-TALLY/compute_force_tally.cpp b/src/USER-TALLY/compute_force_tally.cpp
index d4bcb0158d..cb7e3a4f23 100644
--- a/src/USER-TALLY/compute_force_tally.cpp
+++ b/src/USER-TALLY/compute_force_tally.cpp
@@ -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))
diff --git a/src/USER-TALLY/compute_heat_flux_tally.cpp b/src/USER-TALLY/compute_heat_flux_tally.cpp
index 7834bdb003..65f57b7678 100644
--- a/src/USER-TALLY/compute_heat_flux_tally.cpp
+++ b/src/USER-TALLY/compute_heat_flux_tally.cpp
@@ -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))
diff --git a/src/USER-TALLY/compute_pe_tally.cpp b/src/USER-TALLY/compute_pe_tally.cpp
index f378a5e6b5..e7c0bdd03c 100644
--- a/src/USER-TALLY/compute_pe_tally.cpp
+++ b/src/USER-TALLY/compute_pe_tally.cpp
@@ -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))
diff --git a/src/USER-TALLY/compute_stress_tally.cpp b/src/USER-TALLY/compute_stress_tally.cpp
index 7373d53fd5..28baafb9f8 100644
--- a/src/USER-TALLY/compute_stress_tally.cpp
+++ b/src/USER-TALLY/compute_stress_tally.cpp
@@ -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))
-- 
GitLab