-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathUMMPPixelBasedMapController.h
48 lines (37 loc) · 1.31 KB
/
UMMPPixelBasedMapController.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
//
// UMMPPixelBasedController.h
// UMMPerfusion
//
// Created by UMMPerfusion on 21.06.12.
// Copyright (c) 2012, Marcel Reich & Sven Kaiser & Markus Daab & Patrick Schülein & Engin Aslan
// All rights reserved.
//
#import "UMMPAlgorithmController.h"
#import "UMMPPanelController.h"
#import "UMMPPreset.h"
#import "MPCurveFit.h"
#import "DCMObject.h"
/**
derived from UMMPAlgorithmController
a controller which includes all Pixel based algorithms:
- 1Compartment
- 2C Exchange
- 2C Filtration
- 2C Uptake
- Modified Tofts
reimplements:
- checkUserImport
- saveInputParameter:andAlgorithmName
- savePresetParameter:
- saveOutputParameter:
- startCalculation:andAlgorithmTag
- startMapCalculation
*/
@interface UMMPPixelBasedMapController : UMMPAlgorithmController {
IBOutlet NSView *compartmentMapView; //!< the mapSelectionView for Compartment algorithm
IBOutlet NSView *twoCExchangeView; //!< the mapSelectionView for 2C Exchnage algorithm
IBOutlet NSView *twoCFiltrationView; //!< the mapSelectionView for 2C Filtration algorithm
IBOutlet NSView *twoCUptakeView; //!< the mapSelectionView for 2C Uptake algorithm
IBOutlet NSView *modifiedToftsView; //!< the mapSelectionView for Modified Tofts algorithm
}
@end