IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 3392


Ignore:
Timestamp:
Mar 7, 2005, 6:22:23 PM (21 years ago)
Author:
eugene
Message:

added notes and minor pieces

Location:
trunk/Ohana
Files:
9 added
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/etc/distributions.txt

    r3265 r3392  
    33DISTRIBUTION elixir-config 1.1
    44 USE config-1-1    config
     5END
     6
     7DISTRIBUTION elixir-config 1.2
     8 USE config-1-2    config
    59END
    610
     
    3337 USE libohana-1-1    libohana
    3438 USE libfits-1-1     libfits
     39END
     40
     41# complete elixir distribution
     42DISTRIBUTION elixir-ohana 1.2
     43
     44 USE base
     45
     46 USE addrefs-1-0     addrefs
     47 USE addspphot-1-0   addspphot
     48 USE addstar-1-0     addstar
     49 USE delstar-1-0     delstar
     50 USE elixir-1-1      elixir
     51 USE gastro-1-0      gastro
     52 USE gcompare-1-0    gcompare
     53 USE gophot-1-0      gophot
     54 USE imclean-1-0     imclean
     55 USE imregister-1-1  imregister
     56 USE kapa-1-0        kapa
     57 USE kii-1-1         kii
     58 USE misc-1-0        misc
     59 USE nightd-1-0      nightd
     60 USE opihi-2-1       opihi.v2
     61 USE perl-1-0        perl
     62 USE relphot-1-0     relphot
     63 USE shell-1-0       shell
     64 USE tcl-1-0         tcl
     65
     66 USE libdummy-1-0    libdummy
     67 USE libohana-1-2    libohana
     68 USE libfits-1-2     libfits
    3569END
    3670
  • trunk/Ohana/etc/mkdist

    r2776 r3392  
    5656}
    5757
    58 &vsystem ("mv ohana $group-$version");
     58if ($group eq "elixir-config") {
     59    &vsystem ("mv config $group-$version");
     60} else {
     61    &vsystem ("mv ohana $group-$version");
     62}
    5963&vsystem ("rm -r `find $group-$version -name CVS`");
    6064&vsystem ("tar cvzf $group-$version.tgz  $group-$version");
  • trunk/Ohana/src/opihi/cmd.data/rd.c

    r2843 r3392  
    121121    if (CCDKeyword == (char *) NULL) {
    122122      fprintf (stderr, "CCDKEYWORD variable is not set; ");
    123       fprintf (stderr, "using IMAGEID as default\n");
    124       CCDKeyword = strcreate ("IMAGEID");
     123      fprintf (stderr, "using EXTNAME as default\n");
     124      CCDKeyword = strcreate ("EXTNAME");
    125125    }
    126126    done = FALSE;
  • trunk/Ohana/src/opihi/dvo/pmeasure.c

    r2598 r3392  
    1111  unsigned IDclip, IDchoice, LimExclude;
    1212  unsigned FlagChoice, FlagClip, flags;
     13  int PhotcodeClip;
    1314
    1415  Catalog catalog;
     
    2930  Rmax = graphmode.coords.crval1 + 182.0;
    3031
     32  PhotcodeClip = -1;
     33  if (N = get_argument (argc, argv, "-p")) {
     34    remove_argument (N, &argc, argv);
     35    PhotcodeClip = GetPhotcodeCodebyName (argv[N]);
     36    remove_argument (N, &argc, argv);
     37  }
    3138  IDclip = FALSE;
    3239  if (N = get_argument (argc, argv, "-ID")) {
     
    120127          if (!(flags & FlagChoice)) continue;
    121128        }
     129        if ((PhotcodeClip != -1) && (catalog.measure[m+k].source != PhotcodeClip)) continue;
    122130        mag = PhotCat (&catalog.measure[m+k]);
    123131        Zvec.elements[N] = MIN (1.0, MAX (0.01, (mag - Mz) / Mr));
Note: See TracChangeset for help on using the changeset viewer.