Changeset 26182 for trunk/psModules/src/objects/pmSourceGroups.h
- Timestamp:
- Nov 18, 2009, 10:48:22 AM (16 years ago)
- File:
-
- 1 edited
-
trunk/psModules/src/objects/pmSourceGroups.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/objects/pmSourceGroups.h
r26162 r26182 16 16 } pmSourceGroups; 17 17 18 /// Allocator 19 /// 20 /// Allocates the source groups 18 /// Allocate the source groups 21 19 pmSourceGroups *pmSourceGroupsAlloc( 22 20 const pmReadout *readout, // Readout on which the sources are defined 23 const psArray *sources, // Sources of interest24 21 int nThreads // Number of threads 25 22 ); … … 34 31 ); 35 32 33 /// Populate the source groups 34 bool pmSourceGroupsPopulate( 35 pmSourceGroups *groups, // Source groups to populate 36 const psVector *x, const psVector *y // Coordinates of sources 37 ); 36 38 37 39 40 /// Generate source groups from an array of sources 41 pmSourceGroups *pmSourceGroupsFromSources( 42 const pmReadout *readout, // Readout on which the sources are defined 43 const psArray *sources, // Array of sources 44 int nThreads // Number of threads 45 ); 46 47 /// Generate source groups from vectors with source positions 48 pmSourceGroups *pmSourceGroupsFromVectors( 49 const pmReadout *readout, // Readout on which the sources are defined 50 const psVector *x, const psVector *y, // Coordinates of sources 51 int nThreads // Number of threads 52 ); 38 53 39 54 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
