source: trunk/src/mainDuchamp.cc @ 1062

Last change on this file since 1062 was 1049, checked in by MatthewWhiting, 12 years ago

Ticket #158 - enabling the output of the results and log files using the new writing classes. Appears to work fine, giving the same results. Have cleaned up a bug in the smoothing case where the stats were being recalculated for the un-smoothed cube and then propagating into the log file (the summary bit).

File size: 8.9 KB
Line 
1// -----------------------------------------------------------------------
2// mainDuchamp.cc: Main program for Duchamp source finder.
3// -----------------------------------------------------------------------
4// Copyright (C) 2006, Matthew Whiting, ATNF
5//
6// This program is free software; you can redistribute it and/or modify it
7// under the terms of the GNU General Public License as published by the
8// Free Software Foundation; either version 2 of the License, or (at your
9// option) any later version.
10//
11// Duchamp is distributed in the hope that it will be useful, but WITHOUT
12// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14// for more details.
15//
16// You should have received a copy of the GNU General Public License
17// along with Duchamp; if not, write to the Free Software Foundation,
18// Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA
19//
20// Correspondence concerning Duchamp may be directed to:
21//    Internet email: Matthew.Whiting [at] atnf.csiro.au
22//    Postal address: Dr. Matthew Whiting
23//                    Australia Telescope National Facility, CSIRO
24//                    PO Box 76
25//                    Epping NSW 1710
26//                    AUSTRALIA
27// -----------------------------------------------------------------------
28#include <iostream>
29#include <fstream>
30#include <string>
31#include <math.h>
32#include <unistd.h>
33#include <time.h>
34
35#include <duchamp/duchamp.hh>
36#include <duchamp/param.hh>
37#include <duchamp/pgheader.hh>
38#include <duchamp/Detection/detection.hh>
39#include <duchamp/Cubes/cubes.hh>
40#include <duchamp/Utils/utils.hh>
41#include <duchamp/ATrous/atrous.hh>
42
43using namespace duchamp;
44
45int main(int argc, char * argv[])
46{
47
48  try {
49   
50
51  std::string paramFile,fitsfile;
52  Cube *cube = new Cube;
53
54  if(cube->getopts(argc,argv)==FAILURE) return FAILURE;
55
56  if(cube->pars().getImageFile().empty()){
57    DUCHAMPTHROW("Duchamp", "No input image has been given!. Use the imageFile parameter in the parameter file to specify the FITS file.");
58    return FAILURE;
59  }
60
61  if(cube->pars().getFlagSubsection() || cube->pars().getFlagStatSec()){
62    // make sure the subsection is OK.
63    if(cube->pars().verifySubsection() == FAILURE){
64      DUCHAMPTHROW("Duchamp", "Unable to use the subsection provided.");
65      return FAILURE;
66    }
67  }     
68
69  std::cout << "Opening image: "
70            << cube->pars().getFullImageFile() << std::endl;
71
72  if( cube->getCube() == FAILURE){
73    DUCHAMPTHROW("Duchamp", "Unable to open image file "<< cube->pars().getFullImageFile());
74    return FAILURE;
75  }
76  else std::cout << "Opened successfully." << std::endl;
77
78  // Read in any saved arrays that are in FITS files on disk.
79  if(!cube->pars().getFlagUsePrevious())
80    cube->readSavedArrays();
81
82  // Write the parameters to screen.
83  std::cout << cube->pars() << "\n";
84
85  if(cube->pars().getFlagUsePrevious()){
86    std::cout << "Reading detections from existing log file... \n";
87    if(cube->getExistingDetections() == FAILURE){
88      DUCHAMPTHROW("Duchamp", "Could not read detections from log file");
89      return FAILURE;
90    }
91    else std::cout << "Done.\n";
92  }
93  else {
94
95    if(cube->pars().getFlagLog()){
96      // Prepare the log file.
97      cube->prepareLogFile(argc, argv);
98    }
99
100    //if(cube->pars().getFlagBlankPix()){
101    if(cube->pars().getFlagTrim()){
102      // Trim any blank pixels from the edges, and report the new size
103      // of the cube
104      std::cout<<"Trimming the Blank Pixels from the edges...  "<<std::flush;
105      cube->trimCube();
106      std::cout<<"Done."<<std::endl;
107      std::cout << "New dimensions:  " << cube->getDimX();
108      if(cube->getNumDim()>1) std::cout << "x" << cube->getDimY();
109      if(cube->getNumDim()>2) std::cout << "x" << cube->getDimZ();
110      std::cout << std::endl;
111    }
112
113    if(cube->pars().getFlagBaseline()){
114      std::cout<<"Removing the baselines... "<<std::flush;
115      cube->removeBaseline();
116      std::cout<<" Done.                 \n";
117    }
118
119    if(cube->pars().getFlagNegative()){
120      std::cout<<"Inverting the Cube... "<<std::flush;
121      cube->invert();
122      std::cout<<" Done.\n";
123    }
124
125    cube->Search();
126    std::cout << "Done. Intermediate list has " << cube->getNumObj();
127    if(cube->getNumObj()==1) std::cout << " object.\n";
128    else std::cout << " objects.\n";
129
130    if(cube->getNumObj() > 0){
131      if(cube->pars().getFlagGrowth())
132        std::cout<<"Merging, Growing and Rejecting...  "<<std::flush;
133      else
134        std::cout<<"Merging and Rejecting...  "<<std::flush;
135      cube->ObjectMerger();
136      std::cout<<"Done.                      "<<std::endl;
137    }
138    std::cout<<"Final object count = "<<cube->getNumObj()<<std::endl;
139
140    if(cube->pars().getFlagNegative()){
141      std::cout<<"Un-Inverting the Cube... "<<std::flush;
142      cube->reInvert();
143      std::cout<<" Done."<<std::endl;
144    }
145
146    if(cube->pars().getFlagBaseline()){
147      std::cout<<"Replacing the baselines...  "<<std::flush;
148      cube->replaceBaseline();
149      std::cout<<"Done."<<std::endl;
150    }
151
152    if(cube->pars().getFlagCubeTrimmed()){
153      std::cout<<"Replacing the trimmed pixels on the edges...  "<<std::flush;
154      cube->unTrimCube();
155      std::cout<<"Done."<<std::endl;
156    }
157
158  }
159
160  // cube->prepareOutputFile();
161
162  if(cube->getNumObj()>0){
163
164    std::cout << "Calculating final parameters and setting flags...  "<<std::flush;
165    cube->calcObjectWCSparams();
166
167    cube->setObjectFlags();
168   
169    cube->sortDetections();
170
171    std::cout << "Done." << std::endl;
172
173  }
174 
175  // cube->outputDetectionList();
176  cube->outputCatalogue();
177
178  if(USE_PGPLOT){
179    std::cout<<"Creating the maps...  "<<std::flush;
180    std::vector<std::string> devices;
181    if(cube->nondegDim()>1){
182      if(cube->pars().getFlagXOutput()) devices.push_back("/xs");
183      if(cube->pars().getFlagMaps())
184        devices.push_back(cube->pars().getMomentMap()+"/vcps");
185      cube->plotMomentMap(devices);
186    }
187    if(cube->pars().getFlagMaps()){
188      if(cube->nondegDim()==1) cube->plotDetectionMap("/xs");
189      cube->plotDetectionMap(cube->pars().getDetectionMap()+"/vcps");
190    }
191    std::cout << "Done.\n";
192   
193    if(cube->getNumObj()>0 && cube->pars().getFlagPlotSpectra()){
194      std::cout << "Plotting the individual spectra... " << std::flush;
195      cube->outputSpectra();
196      std::cout << "Done.\n";
197    }
198  }
199  else{
200    std::cout << "PGPLOT has not been enabled, so no graphical output.\n";
201  }
202
203  if(!cube->pars().getFlagUsePrevious()){
204
205    if(cube->pars().getFlagATrous()&&
206       (cube->pars().getFlagOutputRecon()||cube->pars().getFlagOutputResid()) ){
207      std::cout << "Saving reconstructed cube to "
208                << cube->pars().outputReconFile() << "... "<<std::flush;
209      if(cube->saveReconstructedCube() == FAILURE)
210        std::cout << "Failed!\n";
211      else
212        std::cout << "done.\n";
213    }
214    if(cube->pars().getFlagSmooth()&& cube->pars().getFlagOutputSmooth()){
215      std::cout << "Saving smoothed cube to "
216                << cube->pars().outputSmoothFile() << "... " <<std::flush;
217      if(cube->saveSmoothedCube() == FAILURE)
218        std::cout << "Failed!\n";
219      else
220        std::cout << "done.\n";
221    }
222    if(cube->pars().getFlagOutputMomentMap()){
223      std::cout << "Saving 0th moment map image to "
224                << cube->pars().outputMomentMapFile() << "... " <<std::flush;
225      if(cube->saveMomentMapImage() == FAILURE)
226        std::cout << "Failed!\n";
227      else
228        std::cout << "done.\n";
229    }
230
231    if(cube->pars().getFlagLog() && (cube->getNumObj()>0)){
232      // std::ofstream logfile(cube->pars().getLogFile().c_str(),std::ios::app);
233      // logfile << "=-=-=-=-=-=-=-\nCube summary\n=-=-=-=-=-=-=-\n";
234      // logfile << *cube;
235      // logfile.close();
236      cube->logSummary();
237    }
238
239  }
240
241  if(cube->pars().getFlagOutputMask()){
242    std::cout << "Saving mask cube to "
243              << cube->pars().outputMaskFile() << "... " <<std::flush;
244    if(cube->saveMaskCube() == FAILURE)
245      std::cout << "Failed!\n";
246    else
247      std::cout << "done.\n";
248  }
249 
250  if(cube->pars().getFlagVOT()){
251    // std::ofstream votfile(cube->pars().getVOTFile().c_str());
252    // cube->outputDetectionsVOTable(votfile);
253    // votfile.close();
254    cube->outputDetectionsVOTable();
255  }
256
257  if(cube->pars().getFlagKarma()){
258    std::ofstream karmafile(cube->pars().getKarmaFile().c_str());
259    cube->outputDetectionsKarma(karmafile);
260    karmafile.close();
261  }
262
263  if(cube->pars().getFlagTextSpectra()){
264    if(cube->pars().isVerbose()) std::cout << "Saving spectra to text file ... ";
265    cube->writeSpectralData();
266    if(cube->pars().isVerbose()) std::cout << "done.\n";
267  }
268
269  if(!cube->pars().getFlagUsePrevious() && cube->pars().getFlagLog()){
270    // Open the logfile and write the time on the first line
271    std::ofstream logfile(cube->pars().getLogFile().c_str(),std::ios::app);
272    logfile << "Duchamp completed: ";
273    time_t now = time(NULL);
274    logfile << asctime( localtime(&now) );
275    logfile.close();
276  }
277
278
279  delete cube;
280
281  } catch (const DuchampError &err) {
282    std::cout << "\nDuchamp failed with the following error:\n" << err.what() << "\n";
283    exit(1);
284  }
285
286  return SUCCESS;
287
288}
289
Note: See TracBrowser for help on using the repository browser.