Skip to content

Commit

Permalink
CleanUp
Browse files Browse the repository at this point in the history
  • Loading branch information
hansenjn committed Nov 4, 2021
1 parent 9840d83 commit 797d9de
Showing 1 changed file with 2 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,13 +90,9 @@ public class ExtractSharpestPlane_Main implements PlugIn, Measurements {

boolean saveSeriesName = false;

int addPlanesBefore = 0, addPlanesAfter = 0;

int addPlanesBefore = 0, addPlanesAfter = 0;
//-----------------define params for Dialog-----------------

//Variables for processing of an individual task
// enum channelType {PLAQUE,CELL,NEURITE};

public void run(String arg) {
//Initialize
dformat6.setDecimalFormatSymbols(new DecimalFormatSymbols(Locale.US));
Expand Down Expand Up @@ -259,7 +255,6 @@ public void windowClosing(WindowEvent winEvt) {
String loadSeriesTemp;
String removedFiles = "\n";

// String filesList = "Files to process:\n";
if(selectedTaskVariant.equals(taskVariant[1])){
for(int i = tasks-1; i >= 0; i--){
IJ.showProgress((tasks-i)/tasks);
Expand Down Expand Up @@ -321,7 +316,6 @@ public void windowClosing(WindowEvent winEvt) {
series [j] = seriesTemp [j];
seriesName [j] = seriesNameTemp [j];
totSeries [j] = totSeriesTemp [j];
// filesList += name[j] + "\t" + dir[j] + "\t" + series[j] + "\t" + totSeries[j] + "\n";
}
}else if(!loadSeries.equals("ALL")){
if(loadSeries.equals("SERIES")){
Expand Down Expand Up @@ -397,7 +391,6 @@ public void windowClosing(WindowEvent winEvt) {
series [j] = seriesTemp [j];
seriesName [j] = seriesNameTemp [j];
totSeries [j] = totSeriesTemp [j];
// filesList += name[j] + "\t" + dir[j] + "\t" + series[j] + "\t" + totSeries[j] + "\n";
}
}else {
//REMOVE NAME FROM LIST
Expand Down Expand Up @@ -438,7 +431,6 @@ public void windowClosing(WindowEvent winEvt) {
series [j] = seriesTemp [j];
seriesName [j] = seriesNameTemp [j];
totSeries [j] = totSeriesTemp [j];
// filesList += name[j] + "\t" + dir[j] + "\t" + series[j] + "\t" + totSeries[j] + "\n";
}
}
}
Expand Down Expand Up @@ -480,7 +472,7 @@ public void windowClosing(WindowEvent winEvt) {
}

//&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
//------------------------------CELL MEASUREMENT------------------------------
//---------------------------------RUN TASKS----------------------------------
//&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&

for(int task = 0; task < tasks; task++){
Expand Down Expand Up @@ -543,9 +535,6 @@ public void windowClosing(WindowEvent winEvt) {

imp.lock();

/******************************************************************
*** PROCESSING ***
*******************************************************************/
//Define Output File Names
Date currentDate = new Date();

Expand Down

0 comments on commit 797d9de

Please sign in to comment.