Medical Imaging Interaction Toolkit  2018.4.99-389bf124
Medical Imaging Interaction Toolkit
mitkPASimulationBatchGeneratorParameters.h
Go to the documentation of this file.
1 /*============================================================================
2 
3 The Medical Imaging Interaction Toolkit (MITK)
4 
5 Copyright (c) German Cancer Research Center (DKFZ)
6 All rights reserved.
7 
8 Use of this source code is governed by a 3-clause BSD license that can be
9 found in the LICENSE file.
10 
11 ============================================================================*/
12 
13 #ifndef MITKPHOTOACOUSTICSimulationBatchGENERATORPARAMETERS_H
14 #define MITKPHOTOACOUSTICSimulationBatchGENERATORPARAMETERS_H
15 
18 
19 //Includes for smart pointer usage
20 #include "mitkCommon.h"
21 #include "itkLightObject.h"
22 
23 namespace mitk {
24  namespace pa {
26  {
27  public:
29  itkFactorylessNewMacro(Self);
30  itkSetMacro(VolumeIndex, unsigned int);
31  itkSetMacro(NrrdFilePath, std::string);
32  itkSetMacro(TissueName, std::string);
33  itkSetMacro(BinaryPath, std::string);
34  itkSetMacro(NumberOfPhotons, long);
35  itkSetMacro(YOffsetLowerThresholdInCentimeters, double);
36  itkSetMacro(YOffsetUpperThresholdInCentimeters, double);
37  itkSetMacro(YOffsetStepInCentimeters, double);
38  itkGetMacro(VolumeIndex, unsigned int);
39 
40  itkGetMacro(NrrdFilePath, std::string);
41 
42  itkGetMacro(TissueName, std::string);
43 
44  itkGetMacro(BinaryPath, std::string);
45  itkGetMacro(NumberOfPhotons, long);
46  itkGetMacro(YOffsetLowerThresholdInCentimeters, double);
47  itkGetMacro(YOffsetUpperThresholdInCentimeters, double);
48  itkGetMacro(YOffsetStepInCentimeters, double);
49 
50  protected:
53 
54  private:
55 
56  unsigned int m_VolumeIndex;
57  std::string m_NrrdFilePath;
58  std::string m_TissueName;
59  std::string m_BinaryPath;
60  long m_NumberOfPhotons;
61  double m_YOffsetLowerThresholdInCentimeters;
62  double m_YOffsetUpperThresholdInCentimeters;
63  double m_YOffsetStepInCentimeters;
64  };
65  }
66 }
67 #endif // MITKPHOTOACOUSTICSimulationBatchGENERATORPARAMETERS_H
DataCollection - Class to facilitate loading/accessing structured data.
#define mitkClassMacroItkParent(className, SuperClassName)
Definition: mitkCommon.h:49
#define MITKPHOTOACOUSTICSLIB_EXPORT