- Timestamp:
- Jul 3, 2026, 3:08:04 PM (4 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-pstamp-20260421/ppSim/src/ppSimSequenceObject.c
r42385 r43068 23 23 float IQmin = psMetadataLookupF32 (&status, sequence, "IQ_MIN"); 24 24 float IQmax = psMetadataLookupF32 (&status, sequence, "IQ_MAX"); 25 26 float MJDmin = psMetadataLookupF32 (&status, sequence, "MJD_MIN"); 27 float MJDmax = psMetadataLookupF32 (&status, sequence, "MJD_MAX"); 25 28 26 29 if (filters->n != exptimes->n) { … … 101 104 double frnd = psRandomUniform(rng); 102 105 float seeing = IQmin + (IQmax - IQmin)*frnd; 103 104 106 psStringAppend (&command, " -seeing %f", seeing); 107 108 double dtime = (MJDmax - MJDmin)*psRandomUniform(rng); 109 float MJDobs = MJDmin + dtime; 110 psStringAppend (&command, " -mjd-obs %f", MJDobs); 105 111 106 112 psStringAppend (&command, " %s", filename);
Note:
See TracChangeset
for help on using the changeset viewer.
