1 /*=========================================================================
2 Program: vv http://www.creatis.insa-lyon.fr/rio/vv
5 - University of LYON http://www.universite-lyon.fr/
6 - Léon Bérard cancer center http://oncora1.lyon.fnclcc.fr
7 - CREATIS CNRS laboratory http://www.creatis.insa-lyon.fr
9 This software is distributed WITHOUT ANY WARRANTY; without even
10 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
11 PURPOSE. See the copyright notices for more information.
13 It is distributed under dual licence
15 - BSD See included LICENSE.txt file
16 - CeCILL-B http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
17 ======================================================================-====*/
19 #include "vvStructureSetActor.h"
20 #include "vvROIActor.h"
22 //------------------------------------------------------------------------------
23 vvStructureSetActor::vvStructureSetActor()
27 //------------------------------------------------------------------------------
30 //------------------------------------------------------------------------------
31 vvStructureSetActor::~vvStructureSetActor()
34 //------------------------------------------------------------------------------
37 //------------------------------------------------------------------------------
38 int vvStructureSetActor::GetNumberOfROIs()
40 return mROIActors.size();
42 //------------------------------------------------------------------------------
45 //------------------------------------------------------------------------------
46 std::vector<vvROIActor*> & vvStructureSetActor::GetROIList()
50 //------------------------------------------------------------------------------
53 //------------------------------------------------------------------------------
54 void vvStructureSetActor::SetStructureSet(clitk::DicomRT_StructureSet * s)
58 //------------------------------------------------------------------------------
61 //------------------------------------------------------------------------------
62 void vvStructureSetActor::SetSlicerManager(vvSlicerManager * s)
66 //------------------------------------------------------------------------------
69 //------------------------------------------------------------------------------
70 vvROIActor * vvStructureSetActor::GetROIActor(int n)
72 if (mMapROIIndex.find(n) == mMapROIIndex.end()) {
73 std::cerr << "No ROI number " << n << std::endl;
76 return mROIActors[mMapROIIndex[n]];
78 //------------------------------------------------------------------------------
81 //------------------------------------------------------------------------------
82 void vvStructureSetActor::CreateNewROIActor(int n, bool modeBG)
85 clitk::DicomRT_ROI * roi = mStructureSet->GetROI(n);
87 std::cerr << "Error. No ROI number " << n << std::endl;
91 // If already exist : delete it
93 if (mMapROIIndex.find(n) != mMapROIIndex.end()) {
94 delete mROIActors[mMapROIIndex[n]];
95 old = mMapROIIndex[n];
99 vvROIActor * actor = new vvROIActor;
100 if (old == -1) mROIActors.push_back(actor);
101 else mROIActors[old] = actor;
102 actor->SetBGMode(modeBG);
104 actor->SetSlicerManager(mSlicerManager);
106 mMapROIIndex[n] = mROIActors.size()-1;
108 //------------------------------------------------------------------------------