-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSelData.h
executable file
·70 lines (51 loc) · 1.09 KB
/
SelData.h
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
//
// SelData.h
// DynamicSelections
//
// Created by Peter Appel on 03/07/2008.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@interface SelData : NSObject <NSCoding>
{
NSArray *sel;
int countOfSel;
int noOfPoints;
float mswd;
float isoage;
float isoageerr;
float intersect;
float intererr;
float inclination;
float inclerr;
float bestimate;
float errbestimate;
float chi2;
}
- (int)noOfPoints;
- (void)setNoOfPoints:(int)aNoOfPoints;
- (int)countOfSel;
- (void)setCountOfSel:(int)aCountOfSel;
- (NSArray *)sel;
-(void)setSel:(NSArray *)aSel;
- (float)mswd;
- (void)setMswd:(float)x;
- (float)isoage;
- (void)setIsoage:(float)x;
- (float)isoageerr;
- (void)setIsoageerr:(float)x;
- (float)intersect;
- (void)setIntersect:(float)x;
- (float)intererr;
- (void)setIntererr:(float)x;
- (float)inclination;
- (void)setInclination:(float)x;
- (float)inclerr;
- (void)setInclerr:(float)x;
- (float)bestimate;
- (void)setBestimate:(float)x;
- (float)errbestimate;
- (void)setErrbestimate:(float)x;
- (float)chi2;
- (void)setChi2:(float)x;
@end