File: cmdl.h

package info (click to toggle)
purify 2.0.0-5
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 58,688 kB
  • sloc: cpp: 8,410; python: 375; makefile: 7
file content (98 lines) | stat: -rw-r--r-- 3,518 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#ifndef CMLD_H
#define CMLD_H

#include "purify/config.h"
#include <cstdlib>
#include <getopt.h>
#include <string>
#include "purify/casacore.h"
#include "purify/types.h"

namespace purify {

struct Params {
  std::string sopt_logging_level = "debug";
  std::string name = "";
  std::string weighting = "natural";
  std::string stokes = "I";
  purify::casa::MeasurementSet::ChannelWrapper::polarization stokes_val
      = purify::casa::MeasurementSet::ChannelWrapper::polarization::I;

  std::string visfile = "";
  std::string noisefile = "";

  t_int niters = 0;
  t_real beta = 1e-3;
  // measurement operator stuff
  t_real over_sample = 2;
  std::string kernel = "kb";
  t_int J = 4;
  t_int width = 512;
  t_int height = 512;
  t_real cellsizex = 0;
  t_real cellsizey = 0;
  t_real upsample_ratio = 1;
  std::string primary_beam = "none";
  bool fft_grid_correction = false;
  std::string fftw_plan = "measure";
  // w_term stuff
  t_real energy_fraction = 1;
  bool use_w_term = false;
  //adapting the algorithm
  bool update_output = false;  // save output after each iteration
  bool adapt_gamma = true;     // update gamma/stepsize
  bool run_diagnostic = false; // save and output diagnostic information
  bool algo_update = true;     // if to use lambda function to record/update algorithm variables
  bool no_reweighted = true;   // if to use reweighting
  t_real relative_gamma_adapt = 0.01;
  t_int adapt_iter = 100;
  // flux scaling
  t_real norm = 1; // norm of the measurement operator
  t_real psf_norm = 1; // the peak value of the PSF
  t_int power_method_iterations = 100; // number of power method iterations for setting the flux scale

  //convergence information
  t_real n_mu = 1.4; //Factor to multiply scale the l2 bound by
  t_int iter = 0; // number of iterations, 0 means unlimited
  t_real relative_variation = 5e-3; // relative difference in model for convergence
  t_real residual_convergence = 1; // max l2 norm reisudals can have for convergence, -1 means it will choose epsilon by default
  t_real epsilon = 0;
};

static struct option long_options[] = {
    /* These options set a flag. */
    //{"verbose", no_argument,       &verbose_flag, 1},
    /* These options don’t set a flag.
       We distinguish them by their indices. */
    {"help", no_argument, 0, 'z'},
    {"measurement_set", required_argument, 0, 'a'},
    {"noise", required_argument, 0, 'b'},
    {"name", required_argument, 0, 'c'},
    {"niters", required_argument, 0, 'd'},
    {"stokes", required_argument, 0, 'e'},
    {"size", required_argument, 0, 'f'},
    {"beta", required_argument, 0, 'g'},
    {"noadapt", no_argument, 0, 'h'},
    {"l2_bound", required_argument, 0, 'i'},
    {"diagnostic", no_argument, 0, 'j'},
    {"power_iterations", required_argument, 0, 'k'},
    {"primary_beam", required_argument, 0, 'n'},
    {"fft_grid_correction", no_argument, 0, 'o'},
    {"width", required_argument, 0, 'p'},
    {"height", required_argument, 0, 'q'},
    {"kernel", required_argument, 0, 'r'},
    {"kernel_support", required_argument, 0, 's'},
    {"logging_level", required_argument, 0, 't'},
    {"cellsize", required_argument, 0, 'u'},
    {"relative_variation", required_argument, 0, 'v'},
    {"residual_convergence", required_argument, 0, 'w'},
    {"relative_gamma_adapt", required_argument, 0, 'x'},
    {"adapt_iter", required_argument, 0, 'y'},
    {"fftw_plan", required_argument, 0, '1'},
    {0, 0, 0, 0}};

std::string usage();

Params parse_cmdl(int argc, char **argv);
}
#endif