- Timestamp:
- Feb 9, 2010, 8:24:35 PM (16 years ago)
- Location:
- branches/eam_branches/20091201/ppViz
- Files:
-
- 3 copied
-
. (copied) (copied from trunk/ppViz ) (1 prop)
-
src/ppVizPattern (copied) (copied from trunk/ppViz/src/ppVizPSF )
-
src/ppVizPattern/ppVizPattern.h (copied) (copied from trunk/ppViz/src/ppVizPSF/ppVizPSF.h ) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/20091201/ppViz
-
Property svn:mergeinfo
set to (toggle deleted branches)
/branches/eam_branches/20091113/ppViz 26119-26255 /branches/pap/ppViz 26320
-
Property svn:mergeinfo
set to (toggle deleted branches)
-
branches/eam_branches/20091201/ppViz/src/ppVizPattern/ppVizPattern.h
r26827 r26837 5 5 #include <psmodules.h> 6 6 7 #define PPVIZP SF_RECIPE "PPVIZPSF" // Recipe name7 #define PPVIZPATTERN_RECIPE "PPVIZPATTERN" // Recipe name 8 8 9 9 // Data for processing 10 10 typedef struct { 11 psString psfName; // Filename with PSF 12 psString sourcesName; // Filename with sources 13 int fakeNum; // Number of fake sources 14 float fakeMag; // Magnitude of fake sources 11 psString patternName; // Filename with pattern 15 12 psString outRoot; // Output root name 16 float minFlux; // Minimum flux for sources17 int size; // Size of PSF image18 float x, y; // Position of fake source19 13 pmConfig *config; // Configuration 20 } ppVizP SFData;14 } ppVizPatternData; 21 15 22 16 /// Initialise data for processing 23 ppVizP SFData *ppVizPSFDataInit(int *argc, char *argv[] // Command-line arguments17 ppVizPatternData *ppVizPatternDataInit(int *argc, char *argv[] // Command-line arguments 24 18 ); 25 19 26 20 /// Parse command-line arguments 27 bool ppVizP SFArguments(ppVizPSFData *data, // Data for processing21 bool ppVizPatternArguments(ppVizPatternData *data, // Data for processing 28 22 int argc, char *argv[] // Command-line arguments 29 23 ); 30 24 31 25 /// Parse camera configurations 32 bool ppVizP SFCamera(ppVizPSFData *data // Data for processing26 bool ppVizPatternCamera(ppVizPatternData *data // Data for processing 33 27 ); 34 28 35 29 /// Loop over input data, processing 36 bool ppVizP SFLoop(ppVizPSFData *data // Data for processing30 bool ppVizPatternLoop(ppVizPatternData *data // Data for processing 37 31 ); 38 32 39 33 /// Add version information to header 40 bool ppVizP SFVersionHeader(34 bool ppVizPatternVersionHeader( 41 35 psMetadata *header // Header to supplement 42 36 ); 43 37 44 38 /// Print version information to stdout 45 void ppVizP SFVersionPrint(void);39 void ppVizPatternVersionPrint(void); 46 40 47 41 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
