source: trunk/src/param.cc @ 831

Last change on this file since 831 was 831, checked in by MatthewWhiting, 13 years ago

Solving #118 - have new parameter flagPlotSpectra (defaulting to true) that controls whether the spectral plots are done. Also, we take notice of whether the USE_PGPLOT flag is set. Updating docs etc for new parameter as well.

File size: 46.0 KB
Line 
1// -----------------------------------------------------------------------
2// param.cc: Dealing with the set of parameters for Duchamp.
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 <iomanip>
30#include <fstream>
31#include <sstream>
32#include <string>
33#include <algorithm>
34#include <stdlib.h>
35#include <ctype.h>
36#include <math.h>
37#include <unistd.h>
38#include <duchamp/param.hh>
39#include <duchamp/fitsHeader.hh>
40#include <duchamp/duchamp.hh>
41#include <duchamp/pgheader.hh>
42#include <duchamp/ATrous/filter.hh>
43#include <duchamp/Utils/utils.hh>
44#include <duchamp/Utils/Section.hh>
45#include <duchamp/Detection/columns.hh>
46
47namespace duchamp
48{
49
50  /****************************************************************/
51  ///////////////////////////////////////////////////
52  //// Accessor Functions for Parameter class:
53  ///////////////////////////////////////////////////
54  Param::~Param()
55  {
56    /// Deletes the offsets array if the sizeOffsets parameter is
57    /// positive.
58    if(this->sizeOffsets>0) delete [] this->offsets;
59  }
60
61  Param::Param()
62  {
63    this->defaultValues();
64  }
65
66  void Param::defaultValues()
67  {
68    /// Provides default intial values for the parameters. Note that
69    /// imageFile has no default value!
70
71    std::string baseSection = "[*,*,*]";
72    // Input files
73    this->imageFile         = "";
74    this->flagSubsection    = false;
75    this->pixelSec.setSection(baseSection);
76    this->flagReconExists   = false;
77    this->reconFile         = "";
78    this->flagSmoothExists  = false;
79    this->smoothFile        = "";
80    this->usePrevious       = false;
81    this->objectList        = "";
82    // Output files
83    this->flagLog           = false;
84    this->logFile           = "duchamp-Logfile.txt";
85    this->outFile           = "duchamp-Results.txt";
86    this->flagSeparateHeader= false;
87    this->headerFile        = "duchamp-Results.hdr";
88    this->flagPlotSpectra   = true;
89    this->spectraFile       = "duchamp-Spectra.ps";
90    this->flagTextSpectra   = false;
91    this->spectraTextFile   = "duchamp-Spectra.txt";
92    this->flagOutputMomentMap    = false;
93    this->fileOutputMomentMap    = "";
94    this->flagOutputMask    = false;
95    this->fileOutputMask    = "";
96    this->flagMaskWithObjectNum = false;
97    this->flagOutputSmooth  = false;
98    this->fileOutputSmooth  = "";
99    this->flagOutputRecon   = false;
100    this->fileOutputRecon   = "";
101    this->flagOutputResid   = false;
102    this->fileOutputResid   = "";
103    this->flagVOT           = false;
104    this->votFile           = "duchamp-Results.xml";
105    this->flagKarma         = false;
106    this->karmaFile         = "duchamp-Results.ann";
107    this->annotationType    = "borders";
108    this->flagMaps          = true;
109    this->detectionMap      = "duchamp-DetectionMap.ps";
110    this->momentMap         = "duchamp-MomentMap.ps";
111    this->flagXOutput       = true;
112    this->precFlux          = Column::prFLUX;
113    this->precVel           = Column::prVEL;
114    this->precSNR           = Column::prSNR;
115    // Cube related parameters
116    this->flagBlankPix      = true;
117    this->blankPixValue     = -8.00061;
118    this->blankKeyword      = 1;
119    this->bscaleKeyword     = -8.00061;
120    this->bzeroKeyword      = 0.;
121    this->newFluxUnits      = "";
122    // Milky-Way parameters
123    this->flagMW            = false;
124    this->maxMW             = 112;
125    this->minMW             = 75;
126    this->areaBeam          = 0.;
127    this->fwhmBeam          = 0.;
128    this->beamAsUsed.empty();
129    this->searchType        = "spatial";
130    // Trim-related         
131    this->flagTrim          = false;
132    this->hasBeenTrimmed    = false;
133    this->borderLeft        = 0;
134    this->borderRight       = 0;
135    this->borderBottom      = 0;
136    this->borderTop         = 0;
137    // Subsection offsets
138    this->sizeOffsets       = 0;
139    this->xSubOffset        = 0;
140    this->ySubOffset        = 0;
141    this->zSubOffset        = 0;
142    // Baseline related
143    this->flagBaseline      = false;
144    // Detection-related   
145    this->flagNegative      = false;
146    // Object growth       
147    this->flagGrowth        = false;
148    this->growthCut         = 3.;
149    this->flagUserGrowthThreshold = false;
150    this->growthThreshold   = 0.;
151    // FDR analysis         
152    this->flagFDR           = false;
153    this->alphaFDR          = 0.01;
154    this->FDRnumCorChan     = 2;
155    // Other detection     
156    this->flagStatSec       = false;
157    this->statSec.setSection(baseSection);
158    this->flagRobustStats   = true;
159    this->snrCut            = 3.;
160    this->threshold         = 0.;
161    this->flagUserThreshold = false;
162    // Smoothing
163    this->flagSmooth        = false;
164    this->smoothType        = "spectral";
165    this->hanningWidth      = 5;
166    this->kernMaj           = 3.;
167    this->kernMin           = -1.;
168    this->kernPA            = 0.;
169    // A trous reconstruction parameters
170    this->flagATrous        = false;
171    this->reconDim          = 1;
172    this->scaleMin          = 1;
173    this->scaleMax          = 0;
174    this->snrRecon          = 4.;
175    this->filterCode        = 1;
176    this->reconFilter.define(this->filterCode);
177    // Volume-merging parameters
178    this->flagAdjacent      = true;
179    this->threshSpatial     = 3.;
180    this->threshVelocity    = 7.;
181    this->minChannels       = 3;
182    this->minPix            = 2;
183    this->minVoxels         = 4;
184    this->flagRejectBeforeMerge = false;
185    this->flagTwoStageMerging = true;
186    // Input-Output related
187    this->spectralMethod    = "peak";
188    this->spectralUnits     = "km/s";
189    this->pixelCentre       = "centroid";
190    this->sortingParam      = "vel";
191    this->borders           = true;
192    this->blankEdge         = true;
193    this->verbose           = true;
194  }
195
196  Param::Param (const Param& p)
197  {
198    operator=(p);
199  }
200
201  Param& Param::operator= (const Param& p)
202  {
203    if(this == &p) return *this;
204    this->imageFile         = p.imageFile;
205    this->flagSubsection    = p.flagSubsection;
206    this->pixelSec          = p.pixelSec;
207    this->flagReconExists   = p.flagReconExists;
208    this->reconFile         = p.reconFile;     
209    this->flagSmoothExists  = p.flagSmoothExists;
210    this->smoothFile        = p.smoothFile;     
211    this->usePrevious       = p.usePrevious;
212    this->objectList        = p.objectList;
213    this->flagLog           = p.flagLog;       
214    this->logFile           = p.logFile;       
215    this->outFile           = p.outFile;       
216    this->flagSeparateHeader= p.flagSeparateHeader;
217    this->headerFile        = p.headerFile;
218    this->spectraFile       = p.spectraFile;   
219    this->flagTextSpectra   = p.flagTextSpectra;   
220    this->spectraTextFile   = p.spectraTextFile;   
221    this->flagOutputMomentMap    = p.flagOutputMomentMap;
222    this->fileOutputMomentMap    = p.fileOutputMomentMap;
223    this->flagOutputMask    = p.flagOutputMask;
224    this->fileOutputMask    = p.fileOutputMask;
225    this->flagMaskWithObjectNum = p.flagMaskWithObjectNum;
226    this->flagOutputSmooth  = p.flagOutputSmooth;
227    this->fileOutputSmooth  = p.fileOutputSmooth;
228    this->flagOutputRecon   = p.flagOutputRecon;
229    this->fileOutputRecon   = p.fileOutputRecon;
230    this->flagOutputResid   = p.flagOutputResid;
231    this->fileOutputResid   = p.fileOutputResid;
232    this->flagVOT           = p.flagVOT;         
233    this->votFile           = p.votFile;       
234    this->flagKarma         = p.flagKarma;     
235    this->karmaFile         = p.karmaFile;     
236    this->annotationType    = p.annotationType;
237    this->flagMaps          = p.flagMaps;       
238    this->detectionMap      = p.detectionMap;   
239    this->momentMap         = p.momentMap;     
240    this->flagXOutput       = p.flagXOutput;       
241    this->precFlux          = p.precFlux;
242    this->precVel           = p.precVel;
243    this->precSNR           = p.precSNR;
244    this->flagBlankPix      = p.flagBlankPix;   
245    this->blankPixValue     = p.blankPixValue; 
246    this->blankKeyword      = p.blankKeyword;   
247    this->bscaleKeyword     = p.bscaleKeyword; 
248    this->bzeroKeyword      = p.bzeroKeyword;   
249    this->newFluxUnits      = p.newFluxUnits;
250    this->flagMW            = p.flagMW;         
251    this->maxMW             = p.maxMW;         
252    this->minMW             = p.minMW;         
253    this->areaBeam          = p.areaBeam;     
254    this->fwhmBeam          = p.fwhmBeam;     
255    this->beamAsUsed        = p.beamAsUsed;
256    this->searchType        = p.searchType;
257    this->flagTrim          = p.flagTrim;   
258    this->hasBeenTrimmed    = p.hasBeenTrimmed;   
259    this->borderLeft        = p.borderLeft;     
260    this->borderRight       = p.borderRight;   
261    this->borderBottom      = p.borderBottom;   
262    this->borderTop         = p.borderTop;     
263    if(this->sizeOffsets>0) delete [] this->offsets;
264    this->sizeOffsets       = p.sizeOffsets;
265    if(this->sizeOffsets>0){
266      this->offsets           = new long[this->sizeOffsets];
267      for(int i=0;i<this->sizeOffsets;i++) this->offsets[i] = p.offsets[i];
268    }
269    this->xSubOffset        = p.xSubOffset;     
270    this->ySubOffset        = p.ySubOffset;     
271    this->zSubOffset        = p.zSubOffset;
272    this->flagBaseline      = p.flagBaseline;
273    this->flagNegative      = p.flagNegative;
274    this->flagGrowth        = p.flagGrowth;
275    this->growthCut         = p.growthCut;
276    this->growthThreshold   = p.growthThreshold;
277    this->flagUserGrowthThreshold = p.flagUserGrowthThreshold;
278    this->flagFDR           = p.flagFDR;
279    this->alphaFDR          = p.alphaFDR;
280    this->FDRnumCorChan     = p.FDRnumCorChan;
281    this->flagStatSec       = p.flagStatSec;
282    this->statSec           = p.statSec;
283    this->flagRobustStats   = p.flagRobustStats;
284    this->snrCut            = p.snrCut;
285    this->threshold         = p.threshold;
286    this->flagUserThreshold = p.flagUserThreshold;
287    this->flagSmooth        = p.flagSmooth;
288    this->smoothType        = p.smoothType;
289    this->hanningWidth      = p.hanningWidth;
290    this->kernMaj           = p.kernMaj;
291    this->kernMin           = p.kernMin;
292    this->kernPA            = p.kernPA;
293    this->flagATrous        = p.flagATrous;
294    this->reconDim          = p.reconDim;
295    this->scaleMin          = p.scaleMin;
296    this->scaleMax          = p.scaleMax;
297    this->snrRecon          = p.snrRecon;
298    this->filterCode        = p.filterCode;
299    this->reconFilter       = p.reconFilter;
300    this->flagAdjacent      = p.flagAdjacent;
301    this->threshSpatial     = p.threshSpatial;
302    this->threshVelocity    = p.threshVelocity;
303    this->minChannels       = p.minChannels;
304    this->minPix            = p.minPix;
305    this->minVoxels         = p.minVoxels;
306    this->flagRejectBeforeMerge = p.flagRejectBeforeMerge;
307    this->flagTwoStageMerging = p.flagTwoStageMerging;
308    this->spectralMethod    = p.spectralMethod;
309    this->spectralUnits     = p.spectralUnits;
310    this->pixelCentre       = p.pixelCentre;
311    this->sortingParam      = p.sortingParam;
312    this->borders           = p.borders;
313    this->blankEdge         = p.blankEdge;
314    this->verbose           = p.verbose;
315    return *this;
316  }
317  //--------------------------------------------------------------------
318
319  OUTCOME Param::getopts(int argc, char ** argv, std::string progname)
320  {
321    ///   A function that reads in the command-line options, in a manner
322    ///    tailored for use with the main Duchamp program.
323    ///
324    ///   \param argc The number of command line arguments.
325    ///   \param argv The array of command line arguments.
326
327    OUTCOME returnValue = FAILURE;
328    if(argc==1){
329      if(progname=="Selavy") std::cout << SELAVY_ERR_USAGE_MSG;
330      else if(progname=="Duchamp") std::cout << ERR_USAGE_MSG;
331      else std::cout << ERR_USAGE_MSG;
332      returnValue = FAILURE;
333    }
334    else {
335      std::string file;
336      bool changeX = false;
337      this->defaultValues();
338      char c;
339      while( ( c = getopt(argc,argv,"p:f:hvx") )!=-1){
340        switch(c) {
341        case 'p':
342          file = optarg;
343          if(this->readParams(file)==FAILURE){
344            std::stringstream errmsg;
345            errmsg << "Could not open parameter file " << file << ".\n";
346            duchampError(progname,errmsg.str());
347          }
348          else returnValue = SUCCESS;
349          break;
350        case 'f':
351          file = optarg;
352          this->imageFile = file;
353          returnValue = SUCCESS;
354          break;
355        case 'v':
356          std::cout << PROGNAME << " version " << VERSION << std::endl;
357          break;
358        case 'x':
359          changeX = true;
360          break;
361        case 'h':
362        default :
363          if(progname=="Selavy") std::cout << SELAVY_ERR_USAGE_MSG;
364          else if(progname=="Duchamp") std::cout << ERR_USAGE_MSG;
365          else std::cout << ERR_USAGE_MSG;
366          break;
367        }
368      }
369      if(changeX){
370        if(returnValue == SUCCESS) this->setFlagXOutput(false);
371        else {
372          duchampError(progname,
373                       "You need to specify either a parameter file or FITS image.\n");
374          std::cout << "\n" << ERR_USAGE_MSG;
375        }
376      }
377    }
378    return returnValue;
379  }
380  //--------------------------------------------------------------------
381
382  bool Param::isBlank(float &value)
383  {
384    ///  Tests whether the value passed as the argument is BLANK or not.
385    ///  \param value Pixel value to be tested.
386    ///  \return False if flagBlankPix is false. Else, compare to the
387    ///  relevant FITS keywords, using integer comparison.
388
389    return this->flagBlankPix &&
390      (this->blankKeyword == int((value-this->bzeroKeyword)/this->bscaleKeyword));
391  }
392
393  bool *Param::makeBlankMask(float *array, int size)
394  {
395    ///  This returns an array of bools, saying whether each pixel in the
396    ///  given array is BLANK or not. If the pixel is BLANK, set mask to
397    ///  false, else set to true. The array is allocated by the function.
398
399    bool *mask = new bool[size];
400    for(int i=0;i<size;i++) mask[i] = !this->isBlank(array[i]);
401    return mask;
402  }
403
404
405  bool *Param::makeStatMask(float *array, long *dim)
406  {
407    ///  This returns an array of bools, saying whether each pixel in
408    ///  the given array is suitable for a stats calculation. It needs
409    ///  to be in the StatSec (if defined), not blank and not a MW
410    ///  channel. The array is allocated by the function with a 'new' call.
411
412    bool *mask = new bool[dim[0]*dim[1]*dim[2]];
413    for(int x=0;x<dim[0];x++) {
414      for(int y=0;y<dim[1];y++) {
415        for(int z=0;z<dim[2];z++) {
416          int i = x+y*dim[0]+z*dim[0]*dim[1];
417          mask[i] = !this->isBlank(array[i]) && !this->isInMW(z) && this->isStatOK(x,y,z);
418        }
419      }
420    }
421    return mask;
422  }
423
424
425  bool Param::isInMW(int z)
426  {
427    ///  Tests whether we are flagging Milky Way channels, and if so
428    /// whether the given channel number is in the Milky Way range. The
429    /// channels are assumed to start at number 0. 
430    /// \param z The channel number
431    /// \return True if we are flagging Milky Way channels and z is in
432    ///  the range.
433
434    return ( this->flagMW && (z>=this->getMinMW()) && (z<=this->getMaxMW()) );
435  }
436
437  bool Param::isStatOK(int x, int y, int z)
438  {
439   /// Test whether a given pixel position lies within the subsection
440   /// given by the statSec parameter. Only tested if the flagSubsection
441   /// parameter is true -- if it isn't, we just return true since all
442   /// pixels are therefore available for statstical calculations.
443   /// \param x X-value of pixel being tested.
444   /// \param y Y-value of pixel being tested.
445   /// \param z Z-value of pixel being tested.
446   /// \return True if pixel is able to be used for statistical
447   /// calculations. False otherwise.
448
449    int xval=x,yval=y,zval=z;
450    if(flagSubsection){
451      xval += pixelSec.getStart(0);
452      yval += pixelSec.getStart(1);
453      zval += pixelSec.getStart(2);
454    }
455    return !flagStatSec || statSec.isInside(xval,yval,zval);
456  }
457
458  std::vector<int> Param::getObjectRequest()
459  {
460    ///  Returns a list of the object numbers requested via the objectList parameter.
461    /// \return a vector of integers, one for each number in the objectList set.
462
463    std::stringstream ss1;
464    std::string tmp;
465    std::vector<int> tmplist;
466    ss1.str(this->objectList);
467    while(!ss1.eof()){
468      getline(ss1,tmp,',');
469      for(size_t i=0;i<tmp.size();i++) if(tmp[i]=='-') tmp[i]=' ';
470      int a,b;
471      std::stringstream ss2;
472      ss2.str(tmp);
473      ss2 >>a;
474      if(!ss2.eof()) ss2 >> b;
475      else b=a;
476      for(int n=a;n<=b;n++){
477        tmplist.push_back(n);
478      }     
479    }
480    return tmplist;
481  }
482
483  std::vector<bool> Param::getObjectChoices()
484  {
485    ///  Returns a list of bool values, indicating whether a given
486    ///  object was requested or not. The size of the vector is
487    ///  determined by the maximum value in objectList. For instance,
488    ///  if objectList="2,3,5-8", then the returned vector will be
489    ///  [0,1,1,0,1,1,1,1].
490    ///  \return Vector of bool values.
491
492    std::vector<int> objectChoices = this->getObjectRequest();
493    int maxNum = *std::max_element(objectChoices.begin(), objectChoices.end());
494    std::vector<bool> choices(maxNum,false);
495    for(std::vector<int>::iterator obj = objectChoices.begin();obj!=objectChoices.end();obj++)
496      choices[*obj-1] = true;
497    return choices;
498  }
499
500  std::vector<bool> Param::getObjectChoices(int numObjects)
501  {
502    ///  Returns a list of bool values, indicating whether a given
503    ///  object was requested or not. The size of the vector is given
504    ///  by the numObjects parameter. So, if objectList="2,3,5-8", then
505    ///  the returned vector from a getObjectChoices(10) call will be
506    ///  [0,1,1,0,1,1,1,1,0,0].
507    ///  \param numObjects How many objects there are in total.
508    ///  \return Vector of bool values.
509
510    if(this->objectList==""){
511      std::vector<bool> choices(numObjects,true);
512      return choices;
513    }
514    else{
515      std::vector<int> objectChoices = this->getObjectRequest();
516      std::vector<bool> choices(numObjects,false);
517      for(std::vector<int>::iterator obj = objectChoices.begin();obj!=objectChoices.end();obj++)
518        if(*obj<=numObjects) choices[*obj-1] = true;
519      return choices;
520    }
521  }
522
523  /****************************************************************/
524  /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// ///
525  /// / Other Functions using the  Parameter class:
526  /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// /// ///
527
528  OUTCOME Param::readParams(std::string paramfile)
529  {
530    /// The parameters are read in from a disk file, on the assumption that each
531    ///  line of the file has the format "parameter value" (eg. alphafdr 0.1)
532    ///
533    /// The case of the parameter name does not matter, nor does the
534    /// formatting of the spaces (it can be any amount of whitespace or
535    /// tabs).
536    ///
537    /// \param paramfile A std::string containing the parameter filename.
538    ///
539    /// \return FAILURE if the parameter file does not exist. SUCCESS if
540    /// it is able to read it.
541
542    std::ifstream fin(paramfile.c_str());
543    if(!fin.is_open()) return FAILURE;
544    std::string line;
545    while( !std::getline(fin,line,'\n').eof()){
546
547      if(line[0]!='#'){
548        std::stringstream ss;
549        ss.str(line);
550        std::string arg;
551        ss >> arg;
552        arg = makelower(arg);
553        if(arg=="imagefile")       this->imageFile = readFilename(ss);
554        if(arg=="flagsubsection")  this->flagSubsection = readFlag(ss);
555        if(arg=="subsection")      this->pixelSec.setSection(readSval(ss));
556        if(arg=="flagreconexists") this->flagReconExists = readFlag(ss);
557        if(arg=="reconfile")       this->reconFile = readSval(ss);
558        if(arg=="flagsmoothexists")this->flagSmoothExists = readFlag(ss);
559        if(arg=="smoothfile")      this->smoothFile = readSval(ss);
560        if(arg=="beamarea") {       this->areaBeam = readFval(ss); std::cerr << "**** Beam area = " << this->areaBeam << "\n";}
561        if(arg=="beamfwhm") {       this->fwhmBeam = readFval(ss); std::cerr << "**** Beam FWHM = " << this->fwhmBeam << "\n";}
562        if(arg=="useprevious")     this->usePrevious = readFlag(ss);
563        if(arg=="objectlist")      this->objectList = readSval(ss);
564
565        if(arg=="flaglog")         this->flagLog = readFlag(ss);
566        if(arg=="logfile")         this->logFile = readSval(ss);
567        if(arg=="outfile")         this->outFile = readSval(ss);
568        if(arg=="flagseparateheader") this->flagSeparateHeader = readFlag(ss);
569        if(arg=="headerfile")      this->headerFile = readFilename(ss);
570        if(arg=="flagplotspectra") this->flagPlotSpectra = readFlag(ss);
571        if(arg=="spectrafile")     this->spectraFile = readFilename(ss);
572        if(arg=="flagtextspectra") this->flagTextSpectra = readFlag(ss);
573        if(arg=="spectratextfile") this->spectraTextFile = readFilename(ss);
574        if(arg=="flagoutputmomentmap")  this->flagOutputMomentMap = readFlag(ss);
575        if(arg=="fileoutputmomentmap")  this->fileOutputMomentMap = readFilename(ss);
576        if(arg=="flagoutputmask")  this->flagOutputMask = readFlag(ss);
577        if(arg=="fileoutputmask")  this->fileOutputMask = readFilename(ss);
578        if(arg=="flagmaskwithobjectnum") this->flagMaskWithObjectNum = readFlag(ss);
579        if(arg=="flagoutputsmooth")this->flagOutputSmooth = readFlag(ss);
580        if(arg=="fileoutputsmooth")this->fileOutputSmooth = readFilename(ss);
581        if(arg=="flagoutputrecon") this->flagOutputRecon = readFlag(ss);
582        if(arg=="fileoutputrecon") this->fileOutputRecon = readFilename(ss);
583        if(arg=="flagoutputresid") this->flagOutputResid = readFlag(ss);
584        if(arg=="fileoutputresid") this->fileOutputResid = readFilename(ss);
585        if(arg=="flagvot")         this->flagVOT = readFlag(ss);
586        if(arg=="votfile")         this->votFile = readFilename(ss);
587        if(arg=="flagkarma")       this->flagKarma = readFlag(ss);
588        if(arg=="karmafile")       this->karmaFile = readFilename(ss);
589        if(arg=="annotationtype")  this->annotationType = readSval(ss);
590        if(arg=="flagmaps")        this->flagMaps = readFlag(ss);
591        if(arg=="detectionmap")    this->detectionMap = readFilename(ss);
592        if(arg=="momentmap")       this->momentMap = readFilename(ss);
593        if(arg=="flagxoutput")     this->flagXOutput = readFlag(ss);
594        if(arg=="newfluxunits")    this->newFluxUnits = readSval(ss);
595        if(arg=="precflux")        this->precFlux = readIval(ss);
596        if(arg=="precvel")         this->precVel = readIval(ss);
597        if(arg=="precsnr")         this->precSNR = readIval(ss);
598
599        if(arg=="flagtrim")        this->flagTrim = readFlag(ss);
600        if(arg=="flagmw")          this->flagMW = readFlag(ss);
601        if(arg=="maxmw")           this->maxMW = readIval(ss);
602        if(arg=="minmw")           this->minMW = readIval(ss);
603        if(arg=="flagbaseline")    this->flagBaseline = readFlag(ss);
604        if(arg=="searchtype")      this->searchType = readSval(ss);
605
606        if(arg=="flagnegative")    this->flagNegative = readFlag(ss);
607        if(arg=="minpix")          this->minPix = readIval(ss);
608        if(arg=="flaggrowth")      this->flagGrowth = readFlag(ss);
609        if(arg=="growthcut")       this->growthCut = readFval(ss);
610        if(arg=="growththreshold"){
611          this->growthThreshold = readFval(ss);
612          this->flagUserGrowthThreshold = true;
613        }
614
615        if(arg=="flagfdr")         this->flagFDR = readFlag(ss);
616        if(arg=="alphafdr")        this->alphaFDR = readFval(ss);
617        if(arg=="fdrnumcorchan")   this->FDRnumCorChan = readIval(ss);
618        if(arg=="flagstatsec")     this->flagStatSec = readFlag(ss);
619        if(arg=="statsec")         this->statSec.setSection(readSval(ss));
620        if(arg=="flagrobuststats") this->flagRobustStats = readFlag(ss);
621        if(arg=="snrcut")          this->snrCut = readFval(ss);
622        if(arg=="threshold"){
623          this->threshold = readFval(ss);
624          this->flagUserThreshold = true;
625        }
626     
627        if(arg=="flagsmooth")      this->flagSmooth = readFlag(ss);
628        if(arg=="smoothtype")      this->smoothType = readSval(ss);
629        if(arg=="hanningwidth")    this->hanningWidth = readIval(ss);
630        if(arg=="kernmaj")         this->kernMaj = readFval(ss);
631        if(arg=="kernmin")         this->kernMin = readFval(ss);
632        if(arg=="kernpa")          this->kernPA = readFval(ss);
633
634        if(arg=="flagatrous")      this->flagATrous = readFlag(ss);
635        if(arg=="recondim")        this->reconDim = readIval(ss);
636        if(arg=="scalemin")        this->scaleMin = readIval(ss);
637        if(arg=="scalemax")        this->scaleMax = readIval(ss);
638        if(arg=="snrrecon")        this->snrRecon = readFval(ss);
639        if(arg=="filtercode"){
640          this->filterCode = readIval(ss);
641          this->reconFilter.define(this->filterCode);
642        }
643
644        if(arg=="flagadjacent")    this->flagAdjacent = readFlag(ss);
645        if(arg=="threshspatial")   this->threshSpatial = readFval(ss);
646        if(arg=="threshvelocity")  this->threshVelocity = readFval(ss);
647        if(arg=="minchannels")     this->minChannels = readIval(ss);
648        if(arg=="minvoxels")       this->minVoxels = readIval(ss);
649        if(arg=="flagrejectbeforemerge") this->flagRejectBeforeMerge = readFlag(ss);
650        if(arg=="flagtwostagemerging") this->flagTwoStageMerging = readFlag(ss);
651
652        if(arg=="spectralmethod")  this->spectralMethod=makelower(readSval(ss));
653        if(arg=="spectralunits")   this->spectralUnits = makelower(readSval(ss));
654        if(arg=="pixelcentre")     this->pixelCentre = makelower(readSval(ss));
655        if(arg=="sortingparam")    this->sortingParam = makelower(readSval(ss));
656        if(arg=="drawborders")     this->borders = readFlag(ss);
657        if(arg=="drawblankedges")  this->blankEdge = readFlag(ss);
658        if(arg=="verbose")         this->verbose = readFlag(ss);
659
660        // Dealing with deprecated parameters.
661        if(arg=="flagblankpix"){
662          this->flagTrim = readFlag(ss);
663          std::stringstream errmsg;
664          errmsg <<"The parameter flagBlankPix is deprecated. "
665                 <<"Please use the flagTrim parameter in future.\n"
666                 <<"Setting flagTrim = " << stringize(this->flagTrim) << ".\n";
667          duchampWarning("Reading parameters",errmsg.str());
668        }
669        if(arg=="blankpixvalue"){
670          std::stringstream errmsg;
671          errmsg <<"The parameter blankPixValue is deprecated.\n"
672                 <<"This value is only taken from the FITS header.\n";
673          duchampWarning("Reading parameters",errmsg.str());
674        }
675        if(arg=="beamsize"){
676          this->areaBeam = readFval(ss);
677          std::stringstream errmsg;
678          errmsg <<"The parameter beamSize is deprecated.\n"
679                 <<"You can specify the beam size by beamArea or beamFWHM.\n"
680                 <<"Setting beamArea = " << this->areaBeam << ".\n";
681          duchampWarning("Reading parameters",errmsg.str());
682        }
683
684      }
685    }
686
687    this->checkPars();
688
689    return SUCCESS;
690
691  }
692 
693  void Param::checkPars()
694  {
695
696    // If we have usePrevious=false, set the objectlist to blank so that we use all of them
697    if(!this->usePrevious) this->objectList = "";
698
699    // If pgplot was not included in the compilation, need to set flagXOutput to false
700    if(!USE_PGPLOT){
701      if(this->flagXOutput || this->flagMaps || this->flagPlotSpectra)
702        duchampWarning("Reading parameters","PGPlot has not been enabled, so setting flagXOutput, flagMaps and flagPlotSpectra to false.\n");
703      this->flagXOutput = false;
704      this->flagMaps = false;
705      this->flagPlotSpectra = false;
706    }
707
708    // Correcting bad precision values -- if negative, set to 0
709    if(this->precFlux<0) this->precFlux = 0;
710    if(this->precVel<0)  this->precVel = 0;
711    if(this->precSNR<0)  this->precSNR = 0;
712
713    // Can only have "spatial" or "spectral" as search types
714    if(this->searchType != "spatial" && this->searchType != "spectral"){
715      std::stringstream errmsg;
716      errmsg << "You have requested a search type of \""<<this->searchType<<"\".\n"
717             << "Only \"spectral\" and \"spatial\" are accepted. Setting to \"spatial\".\n";
718      duchampWarning("Reading parameters",errmsg.str());
719      this->searchType = "spatial";
720    }
721
722    // The wavelet reconstruction takes precendence over the smoothing.
723    if(this->flagATrous) this->flagSmooth = false;
724
725    if(this->flagUserThreshold){
726
727      // If we specify a manual threshold, need to also specify a manual growth threshold
728      // If we haven't done so, turn growing off
729      if(this->flagGrowth && !this->flagUserGrowthThreshold){
730        std::stringstream errmsg;
731        errmsg << "You have specified a manual search threshold, but not a manual growth threshold.\n"
732               << "You need to do so using the \"growthThreshold\" parameter.\n"
733               << "The growth function is being turned off.\n";
734        duchampWarning("Reading parameters",errmsg.str());
735        this->flagGrowth = false;
736      }
737
738      // If we specify a manual threshold, we don't need the FDR method, so turn it off if requested.
739      if(this->flagFDR){
740        std::stringstream errmsg;
741        errmsg << "You have specified a manual search threshold, so we don't need to use the FDR method.\n"
742               << "Setting \"flagFDR=false\".\n";
743        duchampWarning("Reading parameters",errmsg.str());
744        this->flagFDR = false;
745      }
746
747    }   
748
749    // Make sure the growth level is less than the detection level. Else turn off growing.
750    if(this->flagGrowth){
751      std::stringstream errmsg;
752      bool doWarn = false;
753      if(this->flagUserThreshold &&
754         ( (this->threshold < this->growthThreshold)
755           || (this->snrCut < this->growthCut) ) ){
756        errmsg << "Your \"growthThreshold\" parameter is larger than your \"threshold\".\n"
757               << "The growth function is being turned off.\n";
758        doWarn = true;
759      }
760     
761      if(!this->flagUserThreshold &&
762         (this->snrCut < this->growthCut)) {
763        errmsg << "Your \"growthCut\" parameter is larger than your \"snrCut\".\n"
764               << "The growth function is being turned off.\n";
765        doWarn = true;
766      }
767
768      if(doWarn) duchampWarning("Reading parameters",errmsg.str());
769
770    }
771
772    // Make sure the annnotationType is an acceptable option -- default is "borders"
773    if((this->annotationType != "borders") && (this->annotationType!="circles")){
774      std::stringstream errmsg;
775      errmsg << "The requested value of the parameter annotationType, \""
776             << this->annotationType << "\", is invalid.\n"
777             << "Changing to \"borders\".\n";
778      duchampWarning("Reading parameters",errmsg.str());
779      this->annotationType = "borders";
780    }
781     
782    // Make sure smoothType is an acceptable type -- default is "spectral"
783    if((this->smoothType!="spectral")&&
784       (this->smoothType!="spatial")){
785      std::stringstream errmsg;
786      errmsg << "The requested value of the parameter smoothType, \""
787             << this->smoothType << "\", is invalid.\n"
788             << "Changing to \"spectral\".\n";
789      duchampWarning("Reading parameters",errmsg.str());
790      this->smoothType = "spectral";
791    }
792    // If kernMin has not been given, or is negative, make it equal to kernMaj
793    if(this->kernMin < 0) this->kernMin = this->kernMaj;
794
795    // Make sure spectralMethod is an acceptable type -- default is "peak"
796    if((this->spectralMethod!="peak")&&
797       (this->spectralMethod!="sum")){
798      std::stringstream errmsg;
799      errmsg << "The requested value of the parameter spectralMethod, \""
800             << this->spectralMethod << "\", is invalid.\n"
801             << "Changing to \"peak\".\n";
802      duchampWarning("Reading parameters",errmsg.str());
803      this->spectralMethod = "peak";
804    }
805
806    // Make sure pixelCentre is an acceptable type -- default is "peak"
807    if((this->pixelCentre!="centroid")&&
808       (this->pixelCentre!="average") &&
809       (this->pixelCentre!="peak")       ){
810      std::stringstream errmsg;
811      errmsg << "The requested value of the parameter pixelCentre, \""
812             << this->pixelCentre << "\", is invalid.\n"
813             << "Changing to \"centroid\".\n";
814      duchampWarning("Reading parameters",errmsg.str());
815      this->pixelCentre = "centroid";
816    }
817
818    // Make sure sortingParam is an acceptable type -- default is "vel"
819    bool OK = false;
820    for(int i=0;i<numSortingParamOptions;i++)
821      OK = OK || this->sortingParam==sortingParamOptions[i];
822    if(!OK){
823      std::stringstream errmsg;
824      errmsg << "The requested value of the parameter sortingParam, \""
825             << this->sortingParam << "\", is invalid.\n"
826             << "Changing to \"vel\".\n";
827      duchampWarning("Reading parameters",errmsg.str());
828      this->sortingParam = "vel";
829    }
830     
831  }
832
833  void recordParameters(std::ostream& theStream, std::string paramName, std::string paramDesc, std::string paramValue)
834  {
835   
836    const int width = 56;
837    int widthText = width - paramName.size();
838
839    theStream << std::setw(widthText) << paramDesc
840              << setiosflags(std::ios::right) << paramName
841              << "  =  " << resetiosflags(std::ios::right) << paramValue
842              <<std::endl;
843  }
844
845  std::string fileOption(bool flag, std::string file)
846  {
847    std::ostringstream ss;
848    ss << stringize(flag);
849    if(flag) ss << " --> " << file;
850    return ss.str();
851   
852  }
853
854  std::ostream& operator<< ( std::ostream& theStream, Param& par)
855  {
856    /// Print out the parameter set in a formatted, easy to read style.
857    /// Lists the parameters, a description of them, and their value.
858
859    // BUG -- can get error: `boolalpha' is not a member of type `ios' -- old compilers: gcc 2.95.3?
860    //   theStream.setf(std::ios::boolalpha);
861    theStream.setf(std::ios::left);
862    theStream  <<"\n---- Parameters ----"<<std::endl;
863    theStream  << std::setfill('.');
864    if(par.getFlagSubsection())
865      recordParam(theStream, "[imageFile]", "Image to be analysed", par.getImageFile()<<par.getSubsection());
866    else
867      recordParam(theStream, "[imageFile]", "Image to be analysed", par.getImageFile());
868    if(par.getFlagReconExists() && par.getFlagATrous()){
869      recordParam(theStream, "[reconExists]", "Reconstructed array exists?", stringize(par.getFlagReconExists()));
870      recordParam(theStream, "[reconFile]", "FITS file containing reconstruction", par.getReconFile());
871    }
872    if(par.getFlagSmoothExists() && par.getFlagSmooth()){
873      recordParam(theStream, "[smoothExists]", "Smoothed array exists?", stringize(par.getFlagSmoothExists()));
874      recordParam(theStream, "[smoothFile]", "FITS file containing smoothed array", par.getSmoothFile());
875    }
876    recordParam(theStream, "[logFile]", "Intermediate Logfile", par.logFile);
877    recordParam(theStream, "[outFile]", "Final Results file", par.getOutFile());
878    if(par.getFlagSeparateHeader()){
879      recordParam(theStream, "[headerFile]", "Header for results file", par.getHeaderFile());
880    }
881    if(USE_PGPLOT && par.getFlagPlotSpectra()){
882      recordParam(theStream, "[spectraFile]", "Spectrum file", par.getSpectraFile());
883    }
884    if(par.getFlagTextSpectra()){
885      recordParam(theStream, "[spectraTextFile]", "Text file with ascii spectral data", par.getSpectraTextFile());
886    }
887    if(par.getFlagVOT()){
888      recordParam(theStream, "[votFile]", "VOTable file", par.getVOTFile());
889    }
890    if(par.getFlagKarma()){
891      recordParam(theStream, "[karmaFile]", "Karma annotation file" , par.getKarmaFile());
892    }
893    if(USE_PGPLOT && par.getFlagMaps()){
894      recordParam(theStream, "[momentMap]", "0th Moment Map", par.getMomentMap());
895      recordParam(theStream, "[detectionMap]", "Detection Map", par.getDetectionMap());
896    }
897    if(USE_PGPLOT){
898      recordParam(theStream, "[flagXOutput]", "Display a map in a pgplot xwindow?", stringize(par.getFlagXOutput()));
899    }
900    if(par.getFlagATrous()){
901      recordParam(theStream, "[flagOutputRecon]", "Saving reconstructed cube?", fileOption(par.getFlagOutputRecon(),par.outputReconFile()));
902      recordParam(theStream, "[flagOutputResid]", "Saving residuals from reconstruction?", fileOption(par.getFlagOutputResid(),par.outputResidFile()));
903    }                                                 
904    if(par.getFlagSmooth()){   
905      recordParam(theStream, "[flagOutputSmooth]", "Saving smoothed cube?", fileOption(par.getFlagOutputSmooth(),par.outputSmoothFile()));
906    }                                                 
907    recordParam(theStream, "[flagOutputMask]", "Saving mask cube?", fileOption(par.getFlagOutputMask(),par.outputMaskFile()));
908    recordParam(theStream, "[flagOutputMask]", "Saving 0th moment to FITS file?", fileOption(par.getFlagOutputMomentMap(),par.outputMomentMapFile()));
909
910    theStream  <<"------"<<std::endl;
911
912    recordParam(theStream, "[searchType]", "Type of searching performed", par.getSearchType());
913    if(par.getFlagBlankPix()){
914      recordParam(theStream, "", "Blank Pixel Value", par.getBlankPixVal());
915    }
916    recordParam(theStream, "[flagTrim]", "Trimming Blank Pixels?", stringize(par.getFlagTrim()));
917    recordParam(theStream, "[flagNegative]", "Searching for Negative features?", stringize(par.getFlagNegative()));
918    recordParam(theStream, "[flagMW]", "Removing Milky Way channels?", stringize(par.getFlagMW()));
919    if(par.getFlagMW()){
920      // need to remove the offset correction, as we want to report the parameters actually entered
921      recordParam(theStream, "[minMW - maxMW]", "Milky Way Channels", par.getMinMW()+par.getZOffset()<<"-"<<par.getMaxMW()+par.getZOffset());
922    }
923    if(par.beamAsUsed.origin()==EMPTY){  // No beam in FITS file and no information provided
924      recordParam(theStream, "", "Area of Beam", "No beam");
925    }
926    else if(par.beamAsUsed.origin()==HEADER){ // Report beam size from FITS file
927      recordParam(theStream, "", "Area of Beam (pixels)", par.beamAsUsed.area() << "   (beam: " << par.beamAsUsed.maj() << " x " << par.beamAsUsed.min() <<" pixels)");
928    }
929    else if(par.beamAsUsed.origin()==PARAM){ // Report beam size requested in parameter set input
930      if(par.fwhmBeam>0.) recordParam(theStream, "[beamFWHM]", "FWHM of Beam (pixels)", par.beamAsUsed.maj() << "   (beam area = " << par.beamAsUsed.area() <<" pixels)");
931      else  recordParam(theStream, "[beamArea]", "Area of Beam (pixels)", par.beamAsUsed.area());
932    }
933    else{
934      duchampError("Parameter output","Unknown value for origin of beam");
935    }
936    recordParam(theStream, "[flagBaseline]", "Removing baselines before search?", stringize(par.getFlagBaseline()));
937    recordParam(theStream, "[flagSmooth]", "Smoothing data prior to searching?", stringize(par.getFlagSmooth()));
938    if(par.getFlagSmooth()){           
939      recordParam(theStream, "[smoothType]", "Type of smoothing", par.getSmoothType());
940      if(par.getSmoothType()=="spectral")
941        recordParam(theStream, "[hanningWidth]", "Width of hanning filter", par.getHanningWidth());
942      else{
943        recordParam(theStream, "[kernMaj]", "Gaussian kernel semi-major axis [pix]", par.getKernMaj());
944        recordParam(theStream, "[kernMin]", "Gaussian kernel semi-minor axis [pix]", par.getKernMin());
945        recordParam(theStream, "[kernPA]",  "Gaussian kernel position angle [deg]",  par.getKernPA());
946      }
947    }
948    recordParam(theStream, "[flagATrous]", "Using A Trous reconstruction?", stringize(par.getFlagATrous()));
949    if(par.getFlagATrous()){                           
950      recordParam(theStream, "[reconDim]", "Number of dimensions in reconstruction", par.getReconDim());
951      if(par.getMaxScale()>0){
952        recordParam(theStream, "[scaleMin-scaleMax]", "Scales used in reconstruction", par.getMinScale()<<"-"<<par.getMaxScale());
953      }
954      else{
955        recordParam(theStream, "[scaleMin]", "Minimum scale in reconstruction", par.getMinScale());
956      }
957      recordParam(theStream, "[snrRecon]", "SNR Threshold within reconstruction", par.getAtrousCut());
958      recordParam(theStream, "[filterCode]", "Filter being used for reconstruction", par.getFilterCode()<<" ("<<par.getFilterName()<<")");
959    }                                                 
960    recordParam(theStream, "[flagRobustStats]", "Using Robust statistics?", stringize(par.getFlagRobustStats()));
961    if(par.getFlagStatSec()){
962      recordParam(theStream, "[statSec]", "Section used by statistics calculation", par.statSec.getSection());
963    }
964    recordParam(theStream, "[flagFDR]", "Using FDR analysis?", stringize(par.getFlagFDR()));
965    if(par.getFlagFDR()){                                     
966      recordParam(theStream, "[alphaFDR]", "Alpha value for FDR analysis", par.getAlpha());
967      recordParam(theStream, "[FDRnumCorChan]", "Number of correlated channels for FDR", par.getFDRnumCorChan());
968    }                                                 
969    else {
970      if(par.getFlagUserThreshold()){
971        recordParam(theStream, "[threshold]", "Detection Threshold", par.getThreshold());
972      }
973      else{
974        recordParam(theStream, "[snrCut]", "SNR Threshold (in sigma)", par.getCut());
975      }
976    }
977    recordParam(theStream, "[minPix]", "Minimum # Pixels in a detection", par.getMinPix());
978    recordParam(theStream, "[minChannels]", "Minimum # Channels in a detection", par.getMinChannels());
979    recordParam(theStream, "[minVoxels]", "Minimum # Voxels in a detection", par.getMinVoxels());
980    recordParam(theStream, "[flagGrowth]", "Growing objects after detection?", stringize(par.getFlagGrowth()));
981    if(par.getFlagGrowth()) {                         
982      if(par.getFlagUserGrowthThreshold()){
983        recordParam(theStream, "[growthThreshold]", "Threshold for growth", par.getGrowthThreshold());
984      }
985      else{
986        recordParam(theStream, "[growthCut]", "SNR Threshold for growth", par.getGrowthCut());
987      }
988    }
989    recordParam(theStream, "[flagAdjacent]", "Using Adjacent-pixel criterion?", stringize(par.getFlagAdjacent()));
990    if(!par.getFlagAdjacent()){
991      recordParam(theStream, "[threshSpatial]", "Max. spatial separation for merging", par.getThreshS());
992    }
993    recordParam(theStream, "[threshVelocity]", "Max. velocity separation for merging", par.getThreshV());
994    recordParam(theStream, "[flagRejectBeforeMerge]", "Reject objects before merging?", stringize(par.getFlagRejectBeforeMerge()));
995    recordParam(theStream, "[flagTwoStageMerging]", "Merge objects in two stages?", stringize(par.getFlagTwoStageMerging()));
996    recordParam(theStream, "[spectralMethod]", "Method of spectral plotting", par.getSpectralMethod());
997    recordParam(theStream, "[pixelCentre]", "Type of object centre used in results", par.getPixelCentre());
998
999    theStream  <<"--------------------\n\n";
1000    theStream  << std::setfill(' ');
1001    theStream.unsetf(std::ios::left);
1002    //  theStream.unsetf(std::ios::boolalpha);
1003    return theStream;
1004  }
1005
1006
1007  void Param::copyHeaderInfo(FitsHeader &head)
1008  {
1009    ///  A function to copy across relevant header keywords from the
1010    ///  FitsHeader class to the Param class, as they are needed by
1011    ///  functions in the Param class.
1012    ///  The parameters are the keywords BLANK, BSCALE, BZERO, and the beam size.
1013
1014    this->blankKeyword  = head.getBlankKeyword();
1015    this->bscaleKeyword = head.getBscaleKeyword();
1016    this->bzeroKeyword  = head.getBzeroKeyword();
1017    this->blankPixValue = this->blankKeyword * this->bscaleKeyword +
1018      this->bzeroKeyword;
1019  }
1020
1021  std::string Param::outputMaskFile()
1022  {
1023    ///  This function produces the required filename in which to save
1024    ///  the mask image, indicating which pixels have been detected as
1025    ///  part of an object. If the input image is image.fits, then the
1026    ///  output will be image.MASK.fits.
1027
1028    if(this->fileOutputMask==""){
1029      std::string inputName = this->imageFile;
1030      std::stringstream ss;
1031      ss << inputName.substr(0,inputName.size()-5); 
1032      // remove the ".fits" on the end.
1033      ss << ".MASK.fits";
1034      return ss.str();
1035    }
1036    else return this->fileOutputMask;
1037  }
1038
1039  std::string Param::outputMomentMapFile()
1040  {
1041    ///  This function produces the required filename in which to save
1042    ///  the moment-0 FITS image. If the input image is image.fits, then the
1043    ///  output will be image.MOM0.fits.
1044
1045    if(this->fileOutputMomentMap==""){
1046      std::string inputName = this->imageFile;
1047      std::stringstream ss;
1048      ss << inputName.substr(0,inputName.size()-5); 
1049      // remove the ".fits" on the end.
1050      ss << ".MOM0.fits";
1051      return ss.str();
1052    }
1053    else return this->fileOutputMomentMap;
1054  }
1055
1056  std::string Param::outputSmoothFile()
1057  {
1058    ///  This function produces the required filename in which to save
1059    ///   the smoothed array. If the input image is image.fits, then
1060    ///   the output will be:
1061    ///    <ul><li> Spectral smoothing: image.SMOOTH-1D-3.fits, where the
1062    ///             width of the Hanning filter was 3 pixels.
1063    ///        <li> Spatial smoothing : image.SMOOTH-2D-3-2-20.fits, where
1064    ///             kernMaj=3, kernMin=2 and kernPA=20 degrees.
1065    ///    </ul>
1066
1067    if(this->fileOutputSmooth==""){
1068      std::string inputName = this->imageFile;
1069      std::stringstream ss;
1070      ss << inputName.substr(0,inputName.size()-5); 
1071      // remove the ".fits" on the end.
1072      if(this->flagSubsection) ss<<".sub";
1073      if(this->smoothType=="spectral")
1074        ss << ".SMOOTH-1D-" << this->hanningWidth << ".fits";
1075      else if(this->smoothType=="spatial")
1076        ss << ".SMOOTH-2D-"
1077           << this->kernMaj << "-"
1078           << this->kernMin << "-"
1079           << this->kernPA  << ".fits";
1080      return ss.str();
1081    }
1082    else return this->fileOutputSmooth;
1083  }
1084
1085  std::string Param::outputReconFile()
1086  {
1087    /// This function produces the required filename in which to save
1088    ///  the reconstructed array. If the input image is image.fits, then
1089    ///  the output will be eg. image.RECON-3-2-4-1.fits, where the numbers are
1090    ///  3=reconDim, 2=filterCode, 4=snrRecon, 1=minScale
1091
1092    if(this->fileOutputRecon==""){
1093      std::string inputName = this->imageFile;
1094      std::stringstream ss;
1095      // First we remove the ".fits" from the end of the filename.
1096      ss << inputName.substr(0,inputName.size()-5); 
1097      if(this->flagSubsection) ss<<".sub";
1098      ss << ".RECON-" << this->reconDim
1099         << "-"       << this->filterCode
1100         << "-"       << this->snrRecon
1101         << "-"       << this->scaleMin
1102         << ".fits";
1103      return ss.str();
1104    }
1105    else return this->fileOutputRecon;
1106  }
1107
1108  std::string Param::outputResidFile()
1109  {
1110    /// This function produces the required filename in which to save
1111    ///  the reconstructed array. If the input image is image.fits, then
1112    ///  the output will be eg. image.RESID-3-2-4-1.fits, where the numbers are
1113    ///  3=reconDim, 2=filterCode, 4=snrRecon, 1=scaleMin
1114
1115    if(this->fileOutputResid==""){
1116      std::string inputName = this->imageFile;
1117      std::stringstream ss;
1118      // First we remove the ".fits" from the end of the filename.
1119      ss << inputName.substr(0,inputName.size()-5);
1120      if(this->flagSubsection) ss<<".sub";
1121      ss << ".RESID-" << this->reconDim
1122         << "-"       << this->filterCode
1123         << "-"       << this->snrRecon
1124         << "-"       << this->scaleMin
1125         << ".fits";
1126      return ss.str();
1127    }
1128    else return this->fileOutputResid;
1129  }
1130
1131}
Note: See TracBrowser for help on using the repository browser.