]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ITS/ITSDisplayTracks.C
The access to several data members was changed from public to protected. The digitisa...
[u/mrichter/AliRoot.git] / ITS / ITSDisplayTracks.C
1 Int_t ITSDisplayTracks(const char *fname = "galice.root", Int_t evNum = 0) {
2
3         /*********************************************************************
4          *                                                                   *
5          *  Macro to plot reconstructed tracks with the Kalman Filter V1 on  *
6          *  top of the ITS detailed geometry.                                *
7          *                                                                   *
8          *  Authors: Angela Badala' and Roberto Barbera                      *
9          *                                                                   *
10          *********************************************************************/
11
12
13         // First of all, here are put some variable declarations
14         // that are useful in the following part:
15         Int_t nparticles; // number of particles
16         // ITS module coordinates [layer = 1, ladder = 2, det = 3] and absolute ID[0] of module [0]
17         TArrayI ID(4);
18         Int_t nmodules, dtype; // Total number of modules and module type (SSD, SPD, SDD)
19         Float_t *x = 0, *y = 0, *z = 0; // Arrays where to store read coords
20         Bool_t *St = 0; // Status of the track (hits only)
21
22         // create the Canvas
23
24         c1 = new TCanvas("c1","Track display",50,50,800,800);
25         c1 -> Divide(2,2,0.001,0.001);
26
27         // It's necessary to load the gAlice shared libs
28         // if they aren't already stored in memory...
29         if (gClassTable->GetID("AliRun") < 0) {
30         gROOT->LoadMacro("loadlibs.C");
31                 loadlibs();
32         }
33   // Anyway, this macro needs to read a gAlice file, so it
34   // clears the gAlice object if there is already one in memory...
35   else {
36                 if(gAlice){
37                         delete gAlice;
38                         gAlice = 0;
39                 }
40         }
41
42         // Now is opened the Root input file containing Geometry, Kine and Hits
43   // by default its name must be "galice.root".
44   // When the file is opened, its contens are shown.
45         TFile *file = (TFile*)gROOT->GetListOfFiles()->FindObject(fname);
46         if (!file) file = new TFile(fname);
47                 file->ls();
48         
49         // Then, the macro gets the AliRun object from file.
50         // If this object is not present, an error occurs
51         // and the execution is stopped.
52         // Anyway, this operation needs some time,
53         // don't worry about an apparent absence of output and actions...
54         cout << "\nSearching in '" << fname << "' for an AliRun object ... " << flush;
55         gAlice = (AliRun*)file->Get("gAlice");
56         if (gAlice)
57                 cout << "FOUND!" << endl;
58         else {
59                 cout<<"NOT FOUND! The Macro can't continue!" << endl;
60                 return 0;
61         }
62         
63         // Then, the macro selects the event number specified. Default is 0.
64         nparticles = gAlice->GetEvent(evNum);
65         cout << "\nNumber of particles   = " << nparticles << endl;
66         if (!nparticles) {
67                 cout << "With no particles I can't do much... Goodbye!" << endl;
68                 return 0;
69         }
70         
71         // The next step is filling the ITS from the AliRun object.
72         AliITS *ITS = (AliITS*)gAlice->GetModule("ITS");
73   ITS->InitModules(-1, nmodules);
74   cout << "Number of ITS modules = " << nmodules << endl;
75         cout << "\nFilling modules (it takes a while, now)..." << flush;
76         ITS->FillModules(0, 0, nmodules, " ", " ");
77   cout << "DONE!" << endl;
78
79
80         // Gets geometry...
81         AliITSgeom *gm  = ITS->GetITSgeom();
82         if (!gAlice) {
83                 cout << "A problem occurred when getting the geometry!!!" << endl;
84                 return;
85         }
86
87         
88       
89 //inserire qui la geometria
90
91     TNode *node, *top;
92     
93     const Int_t kColorITS=kRed;
94     //
95     //top = gAlice->GetGeometry()->GetNode("alice");
96
97
98   // DETAILED GEOMETRY
99
100   TNode *sub1node, *sub2node, *sub3node, *sub4node, *sub5node;
101
102   // Define some variables for SPD
103
104   Float_t dits[100];
105   Float_t dits1[3], di101[3], di107[3], di10b[3];  // for layer 1 
106   Float_t di103[3], di10a[3];                      // for layer 1
107   Float_t dits2[3], di1d1[3], di1d7[3], di20b[3];  // for layer 2
108   Float_t di1d3[3], di20a[3];                      // for layer 2  
109
110   Float_t ddet1=200.;     // total detector thickness on layer 1 (micron)
111   Float_t dchip1=200.;    // total chip thickness on layer 1 (micron)
112   
113   Float_t ddet2=200.;     // total detector thickness on layer 2 (micron)                         
114   Float_t dchip2=200.;    // total chip thickness on layer 2 (micron)
115   
116   Float_t dbus=300.;      // total bus thickness on both layers (micron)
117   
118   ddet1  = ddet1*0.0001/2.; // conversion from tot length in um to half in cm
119   ddet2  = ddet2*0.0001/2.; // conversion from tot length in um to half in cm   
120   dchip1 = dchip1*0.0001/2.;// conversion from tot length in um to half in cm   
121   dchip2 = dchip2*0.0001/2.;// conversion from tot length in um to half in cm   
122   dbus   = dbus*0.0001/2.;  // conversion from tot length in um to half in cm       
123                 
124   Float_t deltax, deltay; 
125
126   Int_t thickness = 1;
127   Int_t option    = 2;
128
129
130   // Define some variables for SDD
131   // SDD detector ladder
132
133   Float_t ySDD;
134   Float_t I302dits[3], I402dits[3], I004dits[3], I005dits[3];
135   Float_t Y_SDD_sep = 0.20;
136   Float_t Z_SDD_lay3[6] = {18.55, 10.95, 3.70, -3.70, -11.20, -18.35};
137   Float_t Z_SDD_lay4[8] = {25.75, 18.60, 11.00, 3.70, -3.70, -11.20, -18.45, -26.05};
138
139   // Rotation matrices
140     
141   // SPD - option 'a' 
142   
143   if (option == 1) {  
144   
145      new TRotMatrix("rot238","rot238",90.0,144.0,90.0,234.0,0.0,0.0);
146      new TRotMatrix("rot236","rot236",90.0,180.013702,90.0,270.013702,0.0,0.0);
147      new TRotMatrix("rot239","rot239",90.0,216.0,90.0,306.0,0.0,0.0);     
148      new TRotMatrix("rot233","rot233",90.0,252.000504,90.0,342.000488,0.0,0.0 );     
149      new TRotMatrix("rot240","rot240",90.0,288.0,90.0,18.0,0.0,0.0);
150      new TRotMatrix("rot241","rot241",90.0,324.0,90.0,54.0,0.0,0.0);          
151      new TRotMatrix("rot242","rot242",90.0,36.0,90.0,126.0,0.0,0.0); 
152      new TRotMatrix("rot234","rot234",90.0,71.9991,90.0,161.9991,0.0,0.0);     
153      new TRotMatrix("rot243","rot243",90.0,108.0,90.0,198.0,0.0,0.0);  
154      new TRotMatrix("rot244","rot244",90.0,180.0,90.0,270.0,0.0,0.0);
155      new TRotMatrix("rot245","rot245",90.0,162.0,90.0,252.0,0.0,0.0);
156      new TRotMatrix("rot246","rot246",90.0,310.0,90.0,40.0,0.0,0.0);
157      new TRotMatrix("rot247","rot247",90.0,319.0,90.0,49.0,0.0,0.0);
158      new TRotMatrix("rot248","rot248",90.0,328.0,90.0,58.0,0.0,0.0);
159      new TRotMatrix("rot249","rot249",90.0,337.0,90.0,67.0,0.0,0.0);     
160                  
161   }   
162
163   // SPD - option 'b' (this is the default)  
164
165   if (option == 2) {  
166   
167      new TRotMatrix("rot233","rot233",90.0,252.000504,90.0,342.000488,0.0,0.0);
168      new TRotMatrix("rot244","rot244",90.0,216.0,90.0,306.0,0.0,0.0);
169      new TRotMatrix("rot236","rot236",90.0,180.013702,90.0,270.013702,0.0,0.0);  
170      new TRotMatrix("rot245","rot245",90.0,36.0,90.0,126.0,0.0,0.0);     
171      new TRotMatrix("rot234","rot234",90.0,71.9991,90.0,161.9991,0.0,0.0);  
172      new TRotMatrix("rot246","rot246",90.0,108.0,90.0,198.0,0.0,0.0);    
173      new TRotMatrix("rot247","rot247",90.0,144.0,90.0,234.0,0.0,0.0);
174      new TRotMatrix("rot248","rot248",90.0,288.0,90.0,18.0,0.0,0.0);     
175      new TRotMatrix("rot249","rot249",90.0,324.0,90.0,54.0,0.0,0.0);       
176      new TRotMatrix("rot238","rot238",90.0,180.0,90.0,270.0,0.0,0.0);
177      new TRotMatrix("rot239","rot239",90.0,162.0,90.0,252.0,0.0,0.0);     
178      new TRotMatrix("rot240","rot240",90.0,310.0,90.0,40.0,0.0,0.0);
179      new TRotMatrix("rot241","rot241",90.0,319.0,90.0,49.0,0.0,0.0);
180      new TRotMatrix("rot242","rot242",90.0,328.0,90.0,58.0,0.0,0.0);
181      new TRotMatrix("rot243","rot243",90.0,337.0,90.0,67.0,0.0,0.0);
182
183   }   
184      
185   // SDD
186   
187   new TRotMatrix("rot321","rot321",90.0,12.86,90.0,102.86,0.0,0.0);      
188   new TRotMatrix("rot333","rot333",90.0,38.57,90.0,128.57,0.0,0.0);
189   new TRotMatrix("rot336","rot336",90.0,64.29,90.0,154.29,0.0,0.0);     
190   new TRotMatrix("rot350","rot350",90.0,90.0,90.0,180.0,0.0,0.0);    
191   new TRotMatrix("rot313","rot313",90.0,115.71,90.0,205.71,0.0,0.0);   
192   new TRotMatrix("rot311","rot311",90.0,141.43,90.0,231.43,0.0,0.0);
193   new TRotMatrix("rot310","rot310",90.0,167.14,90.0,257.14,0.0,0.0);  
194   new TRotMatrix("rot386","rot386",90.0,192.86,90.0,282.86,0.0,0.0);    
195   new TRotMatrix("rot309","rot309",90.0,218.57,90.0,308.57,0.0,0.0);  
196   new TRotMatrix("rot308","rot308",90.0,244.29,90.0,334.29,0.0,0.0);  
197   new TRotMatrix("rot356","rot356",90.0,270.0,90.0,0.0,0.0,0.0);   
198   new TRotMatrix("rot307","rot307",90.0,295.71,90.0,25.71,0.0,0.0);  
199   new TRotMatrix("rot306","rot306",90.0,321.43,90.0,51.43,0.0,0.0); 
200   new TRotMatrix("rot305","rot305",90.0,347.14,90.0,77.14,0.0,0.0);             
201   new TRotMatrix("rot335","rot335",90.0,8.18,90.0,98.18,0.0,0.0); 
202   new TRotMatrix("rot332","rot332",90.0,24.55,90.0,114.55,0.0,0.0);  
203   new TRotMatrix("rot331","rot331",90.0,40.91,90.0,130.91,0.0,0.0);      
204   new TRotMatrix("rot366","rot366",90.0,57.27,90.0,147.27,0.0,0.0);     
205   new TRotMatrix("rot330","rot330",90.0,73.64,90.0,163.64,0.0,0.0);        
206   new TRotMatrix("rot350","rot350",90.0,90.0,90.0,180.0,0.0,0.0);    
207   new TRotMatrix("rot329","rot329",90.0,106.36,90.0,196.36,0.0,0.0);  
208   new TRotMatrix("rot328","rot328",90.0,122.73,90.0,212.73,0.0,0.0);  
209   new TRotMatrix("rot327","rot327",90.0,139.09,90.0,229.09,0.0,0.0);  
210   new TRotMatrix("rot326","rot326",90.0,155.45,90.0,245.45,0.0,0.0); 
211   new TRotMatrix("rot325","rot325",90.0,171.82,90.0,261.82,0.0,0.0);  
212   new TRotMatrix("rot324","rot324",90.0,188.18,90.0,278.18,0.0,0.0);   
213   new TRotMatrix("rot323","rot323",90.0,204.55,90.0,294.55,0.0,0.0);   
214   new TRotMatrix("rot322","rot322",90.0,220.91,90.0,310.91,0.0,0.0);  
215   new TRotMatrix("rot320","rot320",90.0,237.27,90.0,327.27,0.0,0.0);  
216   new TRotMatrix("rot319","rot319",90.0,253.64,90.0,343.64,0.0,0.0);  
217   new TRotMatrix("rot318","rot318",90.0,270.0,90.0,360.0,0.0,0.0);  
218   new TRotMatrix("rot317","rot317",90.0,286.36,90.0,16.36,0.0,0.0);  
219   new TRotMatrix("rot316","rot316",90.0,302.73,90.0,32.73,0.0,0.0);     
220   new TRotMatrix("rot315","rot315",90.0,319.09,90.0,49.09,0.0,0.0);     
221   new TRotMatrix("rot314","rot314",90.0,335.45,90.0,65.45,0.0,0.0); 
222   new TRotMatrix("rot334","rot334",90.0,351.82,90.0,81.82,0.0,0.0);      
223       
224   //SSD 
225   
226   new TRotMatrix("rot504","rot504",90.0,127.06,90.0,217.06,0.0,0.0);  
227   new TRotMatrix("rot505","rot505",90.0,116.47,90.0,206.47,0.0,0.0);  
228   new TRotMatrix("rot506","rot506",90.0,105.88,90.0,195.88,0.0,0.0);  
229   new TRotMatrix("rot507","rot507",90.0,95.29,90.0,185.29,0.0,0.0);  
230   new TRotMatrix("rot508","rot508",90.0,84.71,90.0,174.71,0.0,0.0);
231   new TRotMatrix("rot509","rot509",90.0,74.12,90.0,164.12,0.0,0.0);
232   new TRotMatrix("rot510","rot510",90.0,63.53,90.0,153.53,0.0,0.0);  
233   new TRotMatrix("rot511","rot511",90.0,52.94,90.0,142.94,0.0,0.0);
234   new TRotMatrix("rot512","rot512",90.0,42.35,90.0,132.35,0.0,0.0);
235   new TRotMatrix("rot513","rot513",90.0,31.76,90.0,121.76,0.0,0.0); 
236   new TRotMatrix("rot653","rot653",90.0,21.18,90.0,111.18,0.0,0.0); 
237   new TRotMatrix("rot514","rot514",90.0,10.59,90.0,100.59,0.0,0.0);  
238   new TRotMatrix("rot515","rot515",90.0,349.41,90.0,79.41,0.0,0.0);  
239   new TRotMatrix("rot516","rot516",90.0,338.82,90.0,68.82,0.0,0.0);  
240   new TRotMatrix("rot517","rot517",90.0,328.24,90.0,58.24,0.0,0.0);  
241   new TRotMatrix("rot518","rot518",90.0,317.65,90.0,47.65,0.0,0.0);
242   new TRotMatrix("rot519","rot519",90.0,307.06,90.0,37.06,0.0,0.0);
243   new TRotMatrix("rot520","rot520",90.0,296.47,90.0,26.47,0.0,0.0);  
244   new TRotMatrix("rot521","rot521",90.0,285.88,90.0,15.88,0.0,0.0);
245   new TRotMatrix("rot522","rot522",90.0,275.29,90.0,5.29,0.0,0.0);
246   new TRotMatrix("rot523","rot523",90.0,264.71,90.0,354.71,0.0,0.0); 
247   new TRotMatrix("rot524","rot524",90.0,254.12,90.0,344.12,0.0,0.0);  
248   new TRotMatrix("rot525","rot525",90.0,243.53,90.0,333.53,0.0,0.0);  
249   new TRotMatrix("rot526","rot526",90.0,232.94,90.0,322.94,0.0,0.0);  
250   new TRotMatrix("rot527","rot527",90.0,222.35,90.0,312.35,0.0,0.0);  
251   new TRotMatrix("rot528","rot528",90.0,211.76,90.0,301.76,0.0,0.0);
252   new TRotMatrix("rot618","rot618",90.0,201.18,90.0,291.18,0.0,0.0); 
253   new TRotMatrix("rot529","rot529",90.0,190.59,90.0,280.59,0.0,0.0); 
254   new TRotMatrix("rot533","rot533",90.0,180.0,90.0,270.0,0.0,0.0);   
255   new TRotMatrix("rot530","rot530",90.0,169.41,90.0,259.41,0.0,0.0);  
256   new TRotMatrix("rot531","rot531",90.0,158.82,90.0,248.82,0.0,0.0);  
257   new TRotMatrix("rot501","rot501",90.0,148.24,90.0,238.24,0.0,0.0);
258   new TRotMatrix("rot503","rot503",90.0,137.65,90.0,227.65,0.0,0.0);         
259   new TRotMatrix("rot532","rot532",90.0,360.0,90.0,90.0,0.0,0.0);
260   new TRotMatrix("rot560","rot560",90.0,85.26,90.0,175.26,0.0,0.0);  
261   new TRotMatrix("rot561","rot561",90.0,94.74,90.0,184.74,0.0,0.0);
262   new TRotMatrix("rot562","rot562",90.0,104.21,90.0,194.21,0.0,0.0);
263   new TRotMatrix("rot563","rot563",90.0,113.68,90.0,203.68,0.0,0.0); 
264   new TRotMatrix("rot564","rot564",90.0,123.16,90.0,213.16,0.0,0.0);  
265   new TRotMatrix("rot565","rot565",90.0,132.63,90.0,222.63,0.0,0.0);  
266   new TRotMatrix("rot566","rot566",90.0,142.11,90.0,232.11,0.0,0.0);  
267   new TRotMatrix("rot567","rot567",90.0,151.58,90.0,241.58,0.0,0.0);  
268   new TRotMatrix("rot568","rot568",90.0,161.05,90.0,251.05,0.0,0.0);
269   new TRotMatrix("rot569","rot569",90.0,170.53,90.0,260.53,0.0,0.0);
270   new TRotMatrix("rot533","rot533",90.0,180.0,90.0,270.0,0.0,0.0); 
271   new TRotMatrix("rot534","rot534",90.0,189.47,90.0,279.47,0.0,0.0);  
272   new TRotMatrix("rot535","rot535",90.0,198.95,90.0,288.95,0.0,0.0);  
273   new TRotMatrix("rot623","rot623",90.0,208.42,90.0,298.42,0.0,0.0);  
274   new TRotMatrix("rot537","rot537",90.0,217.89,90.0,307.89,0.0,0.0);  
275   new TRotMatrix("rot538","rot538",90.0,227.37,90.0,317.37,0.0,0.0);
276   new TRotMatrix("rot539","rot539",90.0,236.84,90.0,326.84,0.0,0.0);
277   new TRotMatrix("rot540","rot540",90.0,246.32,90.0,336.32,0.0,0.0);  
278   new TRotMatrix("rot541","rot541",90.0,255.79,90.0,345.79,0.0,0.0);
279   new TRotMatrix("rot542","rot542",90.0,265.26,90.0,355.26,0.0,0.0);
280   new TRotMatrix("rot543","rot543",90.0,274.74,90.0,4.74,0.0,0.0); 
281   new TRotMatrix("rot544","rot544",90.0,284.21,90.0,14.21,0.0,0.0);  
282   new TRotMatrix("rot545","rot545",90.0,293.68,90.0,23.68,0.0,0.0);  
283   new TRotMatrix("rot546","rot546",90.0,303.16,90.0,33.16,0.0,0.0);  
284   new TRotMatrix("rot547","rot547",90.0,312.63,90.0,42.63,0.0,0.0);  
285   new TRotMatrix("rot548","rot548",90.0,322.11,90.0,52.11,0.0,0.0);
286   new TRotMatrix("rot549","rot549",90.0,331.58,90.0,61.58,0.0,0.0);
287   new TRotMatrix("rot550","rot550",90.0,341.05,90.0,71.05,0.0,0.0);  
288   new TRotMatrix("rot551","rot551",90.0,350.53,90.0,80.53,0.0,0.0);
289   new TRotMatrix("rot552","rot552",90.0,9.47,90.0,99.47,0.0,0.0);
290   new TRotMatrix("rot553","rot553",90.0,18.95,90.0,108.95,0.0,0.0);
291   new TRotMatrix("rot620","rot620",90.0,28.42,90.0,118.42,0.0,0.0);  
292   new TRotMatrix("rot555","rot555",90.0,37.89,90.0,127.89,0.0,0.0);  
293   new TRotMatrix("rot556","rot556",90.0,47.37,90.0,137.37,0.0,0.0);  
294   new TRotMatrix("rot557","rot557",90.0,56.84,90.0,146.84,0.0,0.0);  
295   new TRotMatrix("rot558","rot558",90.0,66.32,90.0,156.32,0.0,0.0);
296   new TRotMatrix("rot559","rot559",90.0,75.79,90.0,165.79,0.0,0.0);       
297   
298   
299   // --- Define SPD (option 'a') volumes ----------------------------
300   
301   // SPD - option 'a' 
302   // (this is NOT the default)
303   
304   if (option == 1) { 
305     
306     dits1[0] = 0.64;
307     dits1[1] = ddet1;
308     dits1[2] = 3.48;
309     new TBRIK("ITS1","ITS1","void",dits1[0],dits1[1],dits1[2]);
310     
311     dits2[0] = 0.64;
312     dits2[1] = ddet2;
313     dits2[2] = 3.48;
314     new TBRIK("ITS2","ITS2","void",dits2[0],dits2[1],dits2[2]);    
315     
316     di101[0] = 0.705;
317     di101[1] = ddet1;
318     di101[2] = 3.536;
319     new TBRIK("I101","I101","void",di101[0],di101[1],di101[2]);
320     
321     di1d1[0] = 0.705;
322     di1d1[1] = ddet2;
323     di1d1[2] = 3.536;
324     new TBRIK("I1D1","I1D1","void",di1d1[0],di1d1[1],di1d1[2]);    
325     
326     di103[0] = 0.793;
327     di103[1] = ddet1+dchip1;
328     di103[2] = 3.536;
329     new TBRIK("I103","I103","void",di103[0],di103[1],di103[2]);    
330     
331     di1d3[0] = 0.793;
332     di1d3[1] = ddet2+dchip2;
333     di1d3[2] = 3.536;
334     new TBRIK("I1D3","I1D3","void",di1d3[0],di1d3[1],di1d3[2]);        
335         
336     di10a[0] = 0.843;
337     di10a[1] = ddet1+dchip1+dbus+0.0025;  
338     di10a[2] = 19.344;
339     new TBRIK("I10A","I10A","void",di10a[0],di10a[1],di10a[2]); 
340     
341     di20a[0] = 0.843;
342     di20a[1] = ddet2+dchip2+dbus+0.0025;  
343     di20a[2] = 19.344;
344     new TBRIK("I20A","I20A","void",di20a[0],di20a[1],di20a[2]);     
345
346     dits[0] = 3.7;
347     dits[1] = 7.7;
348     dits[2] = 24;
349     dits[3] = 57;
350     dits[4] = 100;
351     new TTUBS("I12A","I12A","void",dits[0],dits[1],dits[2],dits[3],dits[4]);
352      
353     dits[0] = 3.7;
354     dits[1] = 7.75;
355     dits[2] = 26.1;
356     new TTUBE("IT12","IT12","void",dits[0],dits[1],dits[2]);  
357     
358   }
359   
360   // --- Define SPD (option 'b') volumes ----------------------------
361   
362   // SPD - option 'b' 
363   // (this is the default)
364
365   if (option == 2) {
366     
367     dits1[0] = 0.64;
368     dits1[1] = ddet1;
369     dits1[2] = 3.48;
370     new TBRIK("ITS1","ITS1","void",dits1[0],dits1[1],dits1[2]);
371     
372     dits2[0] = 0.64;
373     dits2[1] = ddet2;
374     dits2[2] = 3.48;
375     new TBRIK("ITS2","ITS2","void",dits2[0],dits2[1],dits2[2]);    
376     
377     di101[0] = 0.705;
378     di101[1] = ddet1;
379     di101[2] = 3.536;
380     new TBRIK("I101","I101","void",di101[0],di101[1],di101[2]);
381     
382     di1d1[0] = 0.705;
383     di1d1[1] = ddet2;
384     di1d1[2] = 3.536;
385     new TBRIK("I1D1","I1D1","void",di1d1[0],di1d1[1],di1d1[2]);    
386     
387     di107[0] = 0.793;
388     di107[1] = ddet1+dchip1;
389     di107[2] = 3.536;
390     new TBRIK("I107","I107","void",di107[0],di107[1],di107[2]);    
391     
392     di1d7[0] = 0.7975;
393     di1d7[1] = ddet2+dchip2;
394     di1d7[2] = 3.536;
395     new TBRIK("I1D7","I1D7","void",di1d7[0],di1d7[1],di1d7[2]);        
396         
397     di10b[0] = 0.843;
398     di10b[1] = ddet1+dchip1+dbus+0.0025;  
399     di10b[2] = 19.344;
400     new TBRIK("I10B","I10B","void",di10b[0],di10b[1],di10b[2]); 
401     
402     di20b[0] = 0.843;
403     di20b[1] = ddet2+dchip2+dbus+0.0025;  
404     di20b[2] = 19.344;
405     new TBRIK("I20B","I20B","void",di20b[0],di20b[1],di20b[2]);     
406
407     dits[0] = 3.7;
408     dits[1] = 7.7;
409     dits[2] = 24;
410     dits[3] = 57;
411     dits[4] = 100;
412     new TTUBS("I12B","I12B","void",dits[0],dits[1],dits[2],dits[3],dits[4]);
413      
414     dits[0] = 3.7;
415     dits[1] = 7.75;
416     dits[2] = 26.1;
417     new TTUBE("IT12","IT12","void",dits[0],dits[1],dits[2]);  
418          
419
420   }
421
422   // --- Define SDD volumes ------------------------------------------
423   
424   TPCON *it34 = new TPCON("IT34","IT34","void",0.,360.,6); 
425   it34->DefineSection(0,-34.6,23.49,28.); 
426   it34->DefineSection(1,-23.65,23.49,28.); 
427   it34->DefineSection(2,-23.65,14.59,28.); 
428   it34->DefineSection(3,23.65,14.59,28.); 
429   it34->DefineSection(4,23.65,23.49,28.); 
430   it34->DefineSection(5,34.6,23.49,28.);   
431   
432   I302dits[0] = 3.6250;
433   I302dits[1] = 0.0150;
434   I302dits[2] = 4.3794; 
435   new TBRIK("I302","I302","void",I302dits[0],I302dits[1],I302dits[2]);
436
437   I004dits[0] = I302dits[0]+0.005;
438   I004dits[1] = 2*I302dits[1]+Y_SDD_sep/2.;
439   I004dits[2] = TMath::Abs(Z_SDD_lay3[0]);
440   if (I004dits[2] < TMath::Abs(Z_SDD_lay3[5])) {
441     I004dits[2] = TMath::Abs(Z_SDD_lay3[5]);
442   }
443   I004dits[2] = I004dits[2] + I302dits[2];  
444   new TBRIK("I004","I004","void",I004dits[0],I004dits[1],I004dits[2]); 
445   
446   dits[0] = 3.50850;
447   dits[1] = 0.01499; 
448   dits[2] = 3.76320;  
449   new TBRIK("ITS3","ITS3","void",dits[0],dits[1],dits[2]);    
450  
451   I402dits[0] = 3.6250;
452   I402dits[1] = 0.0150;
453   I402dits[2] = 4.3794; 
454   new TBRIK("I402","I402","void",I402dits[0],I402dits[1],I402dits[2]);
455
456   I005dits[0] = I402dits[0]+0.005;
457   I005dits[1] = 2*I402dits[1]+Y_SDD_sep/2.;
458   I005dits[2] = TMath::Abs(Z_SDD_lay4[0]);
459   if (I005dits[2] < TMath::Abs(Z_SDD_lay4[7])) {
460     I005dits[2] = TMath::Abs(Z_SDD_lay4[7]);
461   }
462   I005dits[2] = I005dits[2] + I402dits[2];  
463   new TBRIK("I005","I005","void",I005dits[0],I005dits[1],I005dits[2]);   
464
465   dits[0] = 3.50850;
466   dits[1] = 0.01499; 
467   dits[2] = 3.76320;
468   new TBRIK("ITS4","ITS4","void",dits[0],dits[1],dits[2]);
469
470   
471   // --- Define SSD volumes ------------------------------------------
472   
473
474   TPCON *it56 = new TPCON("IT56","IT56","void",0.,360.,6); 
475   it56->DefineSection(0,-57.45,43.6,48.); 
476   it56->DefineSection(1,-49.15,43.6,48.); 
477   it56->DefineSection(2,-49.15,36.9,48.); 
478   it56->DefineSection(3,50.55,36.9,48.); 
479   it56->DefineSection(4,50.55,43.6,48.); 
480   it56->DefineSection(5,57.45,43.6,48.);    
481
482   dits[0] = 3.75;
483   dits[1] = 0.045;
484   dits[2] = 43.3;
485   new TBRIK("I565","I565","void",dits[0],dits[1],dits[2]);  
486
487   dits[0] = 3.75;
488   dits[1] = 0.045;
489   dits[2] = 50.975;
490   new TBRIK("I569","I569","void",dits[0],dits[1],dits[2]);  
491   
492   dits[0] = 3.75;
493   dits[1] = 0.015;
494   dits[2] = 2.1;
495   new TBRIK("I562","I562","void",dits[0],dits[1],dits[2]);      
496   
497   dits[0] = 3.75;
498   dits[1] = 0.015;
499   dits[2] = 2.1;
500   new TBRIK("I566","I566","void",dits[0],dits[1],dits[2]);        
501
502   dits[0] = 3.65;
503   dits[1] = 0.015;
504   dits[2] = 2;
505   new TBRIK("ITS5","ITS5","void",dits[0],dits[1],dits[2]); 
506
507   dits[0] = 3.65;
508   dits[1] = 0.015;
509   dits[2] = 2;
510   new TBRIK("ITS6","ITS6","void",dits[0],dits[1],dits[2]);  
511
512   //
513   
514   //top->cd();
515
516
517   // --- Place SSD volumes into their mother volume    
518
519     // Place IT56 in Alice
520     node = new TNode("IT56","IT56","IT56",0.,0.,0.,"");
521     node->SetLineColor(kColorITS);
522     node->SetVisibility(0);
523     node->cd();
524        //
525        // Place copy #1 of I565 in IT56
526        //
527        sub1node = new TNode("I565","I565","I565",0.,38.445,0.,"");
528        sub1node->SetLineColor(kColorITS);
529        sub1node->SetVisibility(0);
530        sub1node->cd();
531           //
532           // Place copy #1 of ITS5 directly in I565
533           //
534           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,41.1546,"");
535           sub2node->SetLineColor(kColorITS);
536           sub2node->SetVisibility(1);
537           //fNodes->Add(sub2node);
538           sub1node->cd();
539           //
540           // Place copy #2 of ITS5 directly in I565
541           //
542           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,37.2246,"");
543           sub2node->SetLineColor(kColorITS);
544           sub2node->SetVisibility(1);
545           //fNodes->Add(sub2node);
546           sub1node->cd();
547           //
548           // Place copy #3 of ITS5 directly in I565
549           //
550           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,33.3146,"");
551           sub2node->SetLineColor(kColorITS);
552           sub2node->SetVisibility(1);
553           //fNodes->Add(sub2node);
554           sub1node->cd();
555           //
556           // Place copy #4 of ITS5 directly in I565
557           //
558           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,29.3846,"");
559           sub2node->SetLineColor(kColorITS);
560           sub2node->SetVisibility(1);
561           //fNodes->Add(sub2node);
562           sub1node->cd();
563           //
564           // Place copy #5 of ITS5 directly in I565
565           //
566           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,25.4746,"");
567           sub2node->SetLineColor(kColorITS);
568           sub2node->SetVisibility(1);
569           //fNodes->Add(sub2node);
570           sub1node->cd();
571           //
572           // Place copy #6 of ITS5 directly in I565
573           //
574           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,21.5446,"");
575           sub2node->SetLineColor(kColorITS);
576           sub2node->SetVisibility(1);
577           //fNodes->Add(sub2node);
578           sub1node->cd();
579           //
580           // Place copy #7 of ITS5 directly in I565
581           //
582           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,17.6346,"");
583           sub2node->SetLineColor(kColorITS);
584           sub2node->SetVisibility(1);
585           //fNodes->Add(sub2node);
586           sub1node->cd();
587           //
588           // Place copy #8 of ITS5 directly in I565
589           //
590           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,13.7046,"");
591           sub2node->SetLineColor(kColorITS);
592           sub2node->SetVisibility(1);
593           //fNodes->Add(sub2node);
594           sub1node->cd();
595           //
596           // Place copy #9 of ITS5 directly in I565
597           //
598           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,9.7946,"");
599           sub2node->SetLineColor(kColorITS);
600           sub2node->SetVisibility(1);
601           //fNodes->Add(sub2node);
602           sub1node->cd();
603           //
604           // Place copy #10 of ITS5 directly in I565
605           //
606           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,5.8645,"");
607           sub2node->SetLineColor(kColorITS);
608           sub2node->SetVisibility(1);
609           //fNodes->Add(sub2node);
610           sub1node->cd();
611           //
612           // Place copy #11 of ITS5 directly in I565
613           //
614           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,1.9546,"");
615           sub2node->SetLineColor(kColorITS);
616           sub2node->SetVisibility(1);
617           //fNodes->Add(sub2node);
618           sub1node->cd();
619           //
620           // Place copy #12 of ITS5 directly in I565
621           //
622           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-1.9754,"");
623           sub2node->SetLineColor(kColorITS);
624           sub2node->SetVisibility(1);
625           //fNodes->Add(sub2node);
626           sub1node->cd();
627           //
628           // Place copy #13 of ITS5 directly in I565
629           //
630           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-5.8855,"");
631           sub2node->SetLineColor(kColorITS);
632           sub2node->SetVisibility(1);
633           //fNodes->Add(sub2node);
634           sub1node->cd();
635           //
636           // Place copy #14 of ITS5 directly in I565
637           //
638           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-9.8154,"");
639           sub2node->SetLineColor(kColorITS);
640           sub2node->SetVisibility(1);
641           //fNodes->Add(sub2node);
642           sub1node->cd();
643           //
644           // Place copy #15 of ITS5 directly in I565
645           //
646           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-13.7254,"");
647           sub2node->SetLineColor(kColorITS);
648           sub2node->SetVisibility(1);
649           //fNodes->Add(sub2node);
650           sub1node->cd();
651           //
652           // Place copy #16 of ITS5 directly in I565
653           //
654           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-17.6555,"");
655           sub2node->SetLineColor(kColorITS);
656           sub2node->SetVisibility(1);
657           //fNodes->Add(sub2node);
658           sub1node->cd();
659           //
660           // Place copy #17 of ITS5 directly in I565
661           //
662           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-21.5655,"");
663           sub2node->SetLineColor(kColorITS);
664           sub2node->SetVisibility(1);
665           //fNodes->Add(sub2node);
666           sub1node->cd();
667           //
668           // Place copy #18 of ITS5 directly in I565
669           //
670           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-25.4954,"");
671           sub2node->SetLineColor(kColorITS);
672           sub2node->SetVisibility(1);
673           //fNodes->Add(sub2node);
674           sub1node->cd();
675           //
676           // Place copy #19 of ITS5 directly in I565
677           //
678           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-29.4054,"");
679           sub2node->SetLineColor(kColorITS);
680           sub2node->SetVisibility(1);
681           //fNodes->Add(sub2node);
682           sub1node->cd();
683           //
684           // Place copy #20 of ITS5 directly in I565
685           //
686           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-33.3354,"");
687           sub2node->SetLineColor(kColorITS);
688           sub2node->SetVisibility(1);
689           //fNodes->Add(sub2node);
690           sub1node->cd();
691           //
692           // Place copy #21 of ITS5 directly in I565
693           //
694           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-37.2454,"");
695           sub2node->SetLineColor(kColorITS);
696           sub2node->SetVisibility(1);
697           //fNodes->Add(sub2node);
698           sub1node->cd();
699           //
700           // Place copy #22 of ITS5 directly in I565
701           //
702           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-41.1554,"");
703           sub2node->SetLineColor(kColorITS);
704           sub2node->SetVisibility(1);
705           //fNodes->Add(sub2node);
706           sub1node->cd();
707        //fNodes->Add(sub1node);
708        node->cd();
709        //
710        // Place copy #2 of I565 in IT56
711        //
712        sub1node = new TNode("I565","I565","I565",-7.0924,37.9412,0.,"rot514");
713        sub1node->SetLineColor(kColorITS);
714        sub1node->SetVisibility(0);
715        sub1node->cd();
716           //
717           // Place copy #1 of ITS5 directly in I565
718           //
719           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,41.1546,"");
720           sub2node->SetLineColor(kColorITS);
721           sub2node->SetVisibility(1);
722           //fNodes->Add(sub2node);
723           sub1node->cd();
724           //
725           // Place copy #2 of ITS5 directly in I565
726           //
727           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,37.2246,"");
728           sub2node->SetLineColor(kColorITS);
729           sub2node->SetVisibility(1);
730           //fNodes->Add(sub2node);
731           sub1node->cd();
732           //
733           // Place copy #3 of ITS5 directly in I565
734           //
735           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,33.3146,"");
736           sub2node->SetLineColor(kColorITS);
737           sub2node->SetVisibility(1);
738           //fNodes->Add(sub2node);
739           sub1node->cd();
740           //
741           // Place copy #4 of ITS5 directly in I565
742           //
743           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,29.3846,"");
744           sub2node->SetLineColor(kColorITS);
745           sub2node->SetVisibility(1);
746           //fNodes->Add(sub2node);
747           sub1node->cd();
748           //
749           // Place copy #5 of ITS5 directly in I565
750           //
751           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,25.4746,"");
752           sub2node->SetLineColor(kColorITS);
753           sub2node->SetVisibility(1);
754           //fNodes->Add(sub2node);
755           sub1node->cd();
756           //
757           // Place copy #6 of ITS5 directly in I565
758           //
759           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,21.5446,"");
760           sub2node->SetLineColor(kColorITS);
761           sub2node->SetVisibility(1);
762           //fNodes->Add(sub2node);
763           sub1node->cd();
764           //
765           // Place copy #7 of ITS5 directly in I565
766           //
767           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,17.6346,"");
768           sub2node->SetLineColor(kColorITS);
769           sub2node->SetVisibility(1);
770           //fNodes->Add(sub2node);
771           sub1node->cd();
772           //
773           // Place copy #8 of ITS5 directly in I565
774           //
775           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,13.7046,"");
776           sub2node->SetLineColor(kColorITS);
777           sub2node->SetVisibility(1);
778           //fNodes->Add(sub2node);
779           sub1node->cd();
780           //
781           // Place copy #9 of ITS5 directly in I565
782           //
783           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,9.7946,"");
784           sub2node->SetLineColor(kColorITS);
785           sub2node->SetVisibility(1);
786           //fNodes->Add(sub2node);
787           sub1node->cd();
788           //
789           // Place copy #10 of ITS5 directly in I565
790           //
791           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,5.8645,"");
792           sub2node->SetLineColor(kColorITS);
793           sub2node->SetVisibility(1);
794           //fNodes->Add(sub2node);
795           sub1node->cd();
796           //
797           // Place copy #11 of ITS5 directly in I565
798           //
799           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,1.9546,"");
800           sub2node->SetLineColor(kColorITS);
801           sub2node->SetVisibility(1);
802           //fNodes->Add(sub2node);
803           sub1node->cd();
804           //
805           // Place copy #12 of ITS5 directly in I565
806           //
807           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-1.9754,"");
808           sub2node->SetLineColor(kColorITS);
809           sub2node->SetVisibility(1);
810           //fNodes->Add(sub2node);
811           sub1node->cd();
812           //
813           // Place copy #13 of ITS5 directly in I565
814           //
815           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-5.8855,"");
816           sub2node->SetLineColor(kColorITS);
817           sub2node->SetVisibility(1);
818           //fNodes->Add(sub2node);
819           sub1node->cd();
820           //
821           // Place copy #14 of ITS5 directly in I565
822           //
823           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-9.8154,"");
824           sub2node->SetLineColor(kColorITS);
825           sub2node->SetVisibility(1);
826           //fNodes->Add(sub2node);
827           sub1node->cd();
828           //
829           // Place copy #15 of ITS5 directly in I565
830           //
831           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-13.7254,"");
832           sub2node->SetLineColor(kColorITS);
833           sub2node->SetVisibility(1);
834           //fNodes->Add(sub2node);
835           sub1node->cd();
836           //
837           // Place copy #16 of ITS5 directly in I565
838           //
839           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-17.6555,"");
840           sub2node->SetLineColor(kColorITS);
841           sub2node->SetVisibility(1);
842           //fNodes->Add(sub2node);
843           sub1node->cd();
844           //
845           // Place copy #17 of ITS5 directly in I565
846           //
847           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-21.5655,"");
848           sub2node->SetLineColor(kColorITS);
849           sub2node->SetVisibility(1);
850           //fNodes->Add(sub2node);
851           sub1node->cd();
852           //
853           // Place copy #18 of ITS5 directly in I565
854           //
855           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-25.4954,"");
856           sub2node->SetLineColor(kColorITS);
857           sub2node->SetVisibility(1);
858           //fNodes->Add(sub2node);
859           sub1node->cd();
860           //
861           // Place copy #19 of ITS5 directly in I565
862           //
863           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-29.4054,"");
864           sub2node->SetLineColor(kColorITS);
865           sub2node->SetVisibility(1);
866           //fNodes->Add(sub2node);
867           sub1node->cd();
868           //
869           // Place copy #20 of ITS5 directly in I565
870           //
871           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-33.3354,"");
872           sub2node->SetLineColor(kColorITS);
873           sub2node->SetVisibility(1);
874           //fNodes->Add(sub2node);
875           sub1node->cd();
876           //
877           // Place copy #21 of ITS5 directly in I565
878           //
879           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-37.2454,"");
880           sub2node->SetLineColor(kColorITS);
881           sub2node->SetVisibility(1);
882           //fNodes->Add(sub2node);
883           sub1node->cd();
884           //
885           // Place copy #22 of ITS5 directly in I565
886           //
887           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-41.1554,"");
888           sub2node->SetLineColor(kColorITS);
889           sub2node->SetVisibility(1);
890           //fNodes->Add(sub2node);
891           sub1node->cd();
892        //fNodes->Add(sub1node);
893        node->cd();
894        //
895        // Place copy #3 of I565 in IT56
896        //
897        sub1node = new TNode("I565","I565","I565",-13.8879,35.8489,0.,"rot653");
898        sub1node->SetLineColor(kColorITS);
899        sub1node->SetVisibility(0);
900        sub1node->cd();
901           //
902           // Place copy #1 of ITS5 directly in I565
903           //
904           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,41.1546,"");
905           sub2node->SetLineColor(kColorITS);
906           sub2node->SetVisibility(1);
907           //fNodes->Add(sub2node);
908           sub1node->cd();
909           //
910           // Place copy #2 of ITS5 directly in I565
911           //
912           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,37.2246,"");
913           sub2node->SetLineColor(kColorITS);
914           sub2node->SetVisibility(1);
915           //fNodes->Add(sub2node);
916           sub1node->cd();
917           //
918           // Place copy #3 of ITS5 directly in I565
919           //
920           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,33.3146,"");
921           sub2node->SetLineColor(kColorITS);
922           sub2node->SetVisibility(1);
923           //fNodes->Add(sub2node);
924           sub1node->cd();
925           //
926           // Place copy #4 of ITS5 directly in I565
927           //
928           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,29.3846,"");
929           sub2node->SetLineColor(kColorITS);
930           sub2node->SetVisibility(1);
931           //fNodes->Add(sub2node);
932           sub1node->cd();
933           //
934           // Place copy #5 of ITS5 directly in I565
935           //
936           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,25.4746,"");
937           sub2node->SetLineColor(kColorITS);
938           sub2node->SetVisibility(1);
939           //fNodes->Add(sub2node);
940           sub1node->cd();
941           //
942           // Place copy #6 of ITS5 directly in I565
943           //
944           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,21.5446,"");
945           sub2node->SetLineColor(kColorITS);
946           sub2node->SetVisibility(1);
947           //fNodes->Add(sub2node);
948           sub1node->cd();
949           //
950           // Place copy #7 of ITS5 directly in I565
951           //
952           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,17.6346,"");
953           sub2node->SetLineColor(kColorITS);
954           sub2node->SetVisibility(1);
955           //fNodes->Add(sub2node);
956           sub1node->cd();
957           //
958           // Place copy #8 of ITS5 directly in I565
959           //
960           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,13.7046,"");
961           sub2node->SetLineColor(kColorITS);
962           sub2node->SetVisibility(1);
963           //fNodes->Add(sub2node);
964           sub1node->cd();
965           //
966           // Place copy #9 of ITS5 directly in I565
967           //
968           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,9.7946,"");
969           sub2node->SetLineColor(kColorITS);
970           sub2node->SetVisibility(1);
971           //fNodes->Add(sub2node);
972           sub1node->cd();
973           //
974           // Place copy #10 of ITS5 directly in I565
975           //
976           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,5.8645,"");
977           sub2node->SetLineColor(kColorITS);
978           sub2node->SetVisibility(1);
979           //fNodes->Add(sub2node);
980           sub1node->cd();
981           //
982           // Place copy #11 of ITS5 directly in I565
983           //
984           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,1.9546,"");
985           sub2node->SetLineColor(kColorITS);
986           sub2node->SetVisibility(1);
987           //fNodes->Add(sub2node);
988           sub1node->cd();
989           //
990           // Place copy #12 of ITS5 directly in I565
991           //
992           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-1.9754,"");
993           sub2node->SetLineColor(kColorITS);
994           sub2node->SetVisibility(1);
995           //fNodes->Add(sub2node);
996           sub1node->cd();
997           //
998           // Place copy #13 of ITS5 directly in I565
999           //
1000           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-5.8855,"");
1001           sub2node->SetLineColor(kColorITS);
1002           sub2node->SetVisibility(1);
1003           //fNodes->Add(sub2node);
1004           sub1node->cd();
1005           //
1006           // Place copy #14 of ITS5 directly in I565
1007           //
1008           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-9.8154,"");
1009           sub2node->SetLineColor(kColorITS);
1010           sub2node->SetVisibility(1);
1011           //fNodes->Add(sub2node);
1012           sub1node->cd();
1013           //
1014           // Place copy #15 of ITS5 directly in I565
1015           //
1016           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-13.7254,"");
1017           sub2node->SetLineColor(kColorITS);
1018           sub2node->SetVisibility(1);
1019           //fNodes->Add(sub2node);
1020           sub1node->cd();
1021           //
1022           // Place copy #16 of ITS5 directly in I565
1023           //
1024           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-17.6555,"");
1025           sub2node->SetLineColor(kColorITS);
1026           sub2node->SetVisibility(1);
1027           //fNodes->Add(sub2node);
1028           sub1node->cd();
1029           //
1030           // Place copy #17 of ITS5 directly in I565
1031           //
1032           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-21.5655,"");
1033           sub2node->SetLineColor(kColorITS);
1034           sub2node->SetVisibility(1);
1035           //fNodes->Add(sub2node);
1036           sub1node->cd();
1037           //
1038           // Place copy #18 of ITS5 directly in I565
1039           //
1040           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-25.4954,"");
1041           sub2node->SetLineColor(kColorITS);
1042           sub2node->SetVisibility(1);
1043           //fNodes->Add(sub2node);
1044           sub1node->cd();
1045           //
1046           // Place copy #19 of ITS5 directly in I565
1047           //
1048           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-29.4054,"");
1049           sub2node->SetLineColor(kColorITS);
1050           sub2node->SetVisibility(1);
1051           //fNodes->Add(sub2node);
1052           sub1node->cd();
1053           //
1054           // Place copy #20 of ITS5 directly in I565
1055           //
1056           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-33.3354,"");
1057           sub2node->SetLineColor(kColorITS);
1058           sub2node->SetVisibility(1);
1059           //fNodes->Add(sub2node);
1060           sub1node->cd();
1061           //
1062           // Place copy #21 of ITS5 directly in I565
1063           //
1064           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-37.2454,"");
1065           sub2node->SetLineColor(kColorITS);
1066           sub2node->SetVisibility(1);
1067           //fNodes->Add(sub2node);
1068           sub1node->cd();
1069           //
1070           // Place copy #22 of ITS5 directly in I565
1071           //
1072           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-41.1554,"");
1073           sub2node->SetLineColor(kColorITS);
1074           sub2node->SetVisibility(1);
1075           //fNodes->Add(sub2node);
1076           sub1node->cd();
1077        //fNodes->Add(sub1node);
1078        node->cd();
1079        //
1080        // Place copy #4 of I565 in IT56
1081        //
1082        sub1node = new TNode("I565","I565","I565",-20.3195,32.817,0.,"rot513");
1083        sub1node->SetLineColor(kColorITS);
1084        sub1node->SetVisibility(0);
1085        sub1node->cd();
1086           //
1087           // Place copy #1 of ITS5 directly in I565
1088           //
1089           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,41.1546,"");
1090           sub2node->SetLineColor(kColorITS);
1091           sub2node->SetVisibility(1);
1092           //fNodes->Add(sub2node);
1093           sub1node->cd();
1094           //
1095           // Place copy #2 of ITS5 directly in I565
1096           //
1097           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,37.2246,"");
1098           sub2node->SetLineColor(kColorITS);
1099           sub2node->SetVisibility(1);
1100           //fNodes->Add(sub2node);
1101           sub1node->cd();
1102           //
1103           // Place copy #3 of ITS5 directly in I565
1104           //
1105           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,33.3146,"");
1106           sub2node->SetLineColor(kColorITS);
1107           sub2node->SetVisibility(1);
1108           //fNodes->Add(sub2node);
1109           sub1node->cd();
1110           //
1111           // Place copy #4 of ITS5 directly in I565
1112           //
1113           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,29.3846,"");
1114           sub2node->SetLineColor(kColorITS);
1115           sub2node->SetVisibility(1);
1116           //fNodes->Add(sub2node);
1117           sub1node->cd();
1118           //
1119           // Place copy #5 of ITS5 directly in I565
1120           //
1121           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,25.4746,"");
1122           sub2node->SetLineColor(kColorITS);
1123           sub2node->SetVisibility(1);
1124           //fNodes->Add(sub2node);
1125           sub1node->cd();
1126           //
1127           // Place copy #6 of ITS5 directly in I565
1128           //
1129           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,21.5446,"");
1130           sub2node->SetLineColor(kColorITS);
1131           sub2node->SetVisibility(1);
1132           //fNodes->Add(sub2node);
1133           sub1node->cd();
1134           //
1135           // Place copy #7 of ITS5 directly in I565
1136           //
1137           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,17.6346,"");
1138           sub2node->SetLineColor(kColorITS);
1139           sub2node->SetVisibility(1);
1140           //fNodes->Add(sub2node);
1141           sub1node->cd();
1142           //
1143           // Place copy #8 of ITS5 directly in I565
1144           //
1145           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,13.7046,"");
1146           sub2node->SetLineColor(kColorITS);
1147           sub2node->SetVisibility(1);
1148           //fNodes->Add(sub2node);
1149           sub1node->cd();
1150           //
1151           // Place copy #9 of ITS5 directly in I565
1152           //
1153           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,9.7946,"");
1154           sub2node->SetLineColor(kColorITS);
1155           sub2node->SetVisibility(1);
1156           //fNodes->Add(sub2node);
1157           sub1node->cd();
1158           //
1159           // Place copy #10 of ITS5 directly in I565
1160           //
1161           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,5.8645,"");
1162           sub2node->SetLineColor(kColorITS);
1163           sub2node->SetVisibility(1);
1164           //fNodes->Add(sub2node);
1165           sub1node->cd();
1166           //
1167           // Place copy #11 of ITS5 directly in I565
1168           //
1169           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,1.9546,"");
1170           sub2node->SetLineColor(kColorITS);
1171           sub2node->SetVisibility(1);
1172           //fNodes->Add(sub2node);
1173           sub1node->cd();
1174           //
1175           // Place copy #12 of ITS5 directly in I565
1176           //
1177           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-1.9754,"");
1178           sub2node->SetLineColor(kColorITS);
1179           sub2node->SetVisibility(1);
1180           //fNodes->Add(sub2node);
1181           sub1node->cd();
1182           //
1183           // Place copy #13 of ITS5 directly in I565
1184           //
1185           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-5.8855,"");
1186           sub2node->SetLineColor(kColorITS);
1187           sub2node->SetVisibility(1);
1188           //fNodes->Add(sub2node);
1189           sub1node->cd();
1190           //
1191           // Place copy #14 of ITS5 directly in I565
1192           //
1193           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-9.8154,"");
1194           sub2node->SetLineColor(kColorITS);
1195           sub2node->SetVisibility(1);
1196           //fNodes->Add(sub2node);
1197           sub1node->cd();
1198           //
1199           // Place copy #15 of ITS5 directly in I565
1200           //
1201           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-13.7254,"");
1202           sub2node->SetLineColor(kColorITS);
1203           sub2node->SetVisibility(1);
1204           //fNodes->Add(sub2node);
1205           sub1node->cd();
1206           //
1207           // Place copy #16 of ITS5 directly in I565
1208           //
1209           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-17.6555,"");
1210           sub2node->SetLineColor(kColorITS);
1211           sub2node->SetVisibility(1);
1212           //fNodes->Add(sub2node);
1213           sub1node->cd();
1214           //
1215           // Place copy #17 of ITS5 directly in I565
1216           //
1217           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-21.5655,"");
1218           sub2node->SetLineColor(kColorITS);
1219           sub2node->SetVisibility(1);
1220           //fNodes->Add(sub2node);
1221           sub1node->cd();
1222           //
1223           // Place copy #18 of ITS5 directly in I565
1224           //
1225           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-25.4954,"");
1226           sub2node->SetLineColor(kColorITS);
1227           sub2node->SetVisibility(1);
1228           //fNodes->Add(sub2node);
1229           sub1node->cd();
1230           //
1231           // Place copy #19 of ITS5 directly in I565
1232           //
1233           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-29.4054,"");
1234           sub2node->SetLineColor(kColorITS);
1235           sub2node->SetVisibility(1);
1236           //fNodes->Add(sub2node);
1237           sub1node->cd();
1238           //
1239           // Place copy #20 of ITS5 directly in I565
1240           //
1241           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-33.3354,"");
1242           sub2node->SetLineColor(kColorITS);
1243           sub2node->SetVisibility(1);
1244           //fNodes->Add(sub2node);
1245           sub1node->cd();
1246           //
1247           // Place copy #21 of ITS5 directly in I565
1248           //
1249           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-37.2454,"");
1250           sub2node->SetLineColor(kColorITS);
1251           sub2node->SetVisibility(1);
1252           //fNodes->Add(sub2node);
1253           sub1node->cd();
1254           //
1255           // Place copy #22 of ITS5 directly in I565
1256           //
1257           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-41.1554,"");
1258           sub2node->SetLineColor(kColorITS);
1259           sub2node->SetVisibility(1);
1260           //fNodes->Add(sub2node);
1261           sub1node->cd();
1262        //fNodes->Add(sub1node);
1263        node->cd();
1264        //
1265        // Place copy #5 of I565 in IT56
1266        //
1267        sub1node = new TNode("I565","I565","I565",-25.9002,28.4112,0.,"rot512");
1268        sub1node->SetLineColor(kColorITS);
1269        sub1node->SetVisibility(0);
1270        sub1node->cd();
1271           //
1272           // Place copy #1 of ITS5 directly in I565
1273           //
1274           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,41.1546,"");
1275           sub2node->SetLineColor(kColorITS);
1276           sub2node->SetVisibility(1);
1277           //fNodes->Add(sub2node);
1278           sub1node->cd();
1279           //
1280           // Place copy #2 of ITS5 directly in I565
1281           //
1282           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,37.2246,"");
1283           sub2node->SetLineColor(kColorITS);
1284           sub2node->SetVisibility(1);
1285           //fNodes->Add(sub2node);
1286           sub1node->cd();
1287           //
1288           // Place copy #3 of ITS5 directly in I565
1289           //
1290           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,33.3146,"");
1291           sub2node->SetLineColor(kColorITS);
1292           sub2node->SetVisibility(1);
1293           //fNodes->Add(sub2node);
1294           sub1node->cd();
1295           //
1296           // Place copy #4 of ITS5 directly in I565
1297           //
1298           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,29.3846,"");
1299           sub2node->SetLineColor(kColorITS);
1300           sub2node->SetVisibility(1);
1301           //fNodes->Add(sub2node);
1302           sub1node->cd();
1303           //
1304           // Place copy #5 of ITS5 directly in I565
1305           //
1306           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,25.4746,"");
1307           sub2node->SetLineColor(kColorITS);
1308           sub2node->SetVisibility(1);
1309           //fNodes->Add(sub2node);
1310           sub1node->cd();
1311           //
1312           // Place copy #6 of ITS5 directly in I565
1313           //
1314           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,21.5446,"");
1315           sub2node->SetLineColor(kColorITS);
1316           sub2node->SetVisibility(1);
1317           //fNodes->Add(sub2node);
1318           sub1node->cd();
1319           //
1320           // Place copy #7 of ITS5 directly in I565
1321           //
1322           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,17.6346,"");
1323           sub2node->SetLineColor(kColorITS);
1324           sub2node->SetVisibility(1);
1325           //fNodes->Add(sub2node);
1326           sub1node->cd();
1327           //
1328           // Place copy #8 of ITS5 directly in I565
1329           //
1330           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,13.7046,"");
1331           sub2node->SetLineColor(kColorITS);
1332           sub2node->SetVisibility(1);
1333           //fNodes->Add(sub2node);
1334           sub1node->cd();
1335           //
1336           // Place copy #9 of ITS5 directly in I565
1337           //
1338           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,9.7946,"");
1339           sub2node->SetLineColor(kColorITS);
1340           sub2node->SetVisibility(1);
1341           //fNodes->Add(sub2node);
1342           sub1node->cd();
1343           //
1344           // Place copy #10 of ITS5 directly in I565
1345           //
1346           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,5.8645,"");
1347           sub2node->SetLineColor(kColorITS);
1348           sub2node->SetVisibility(1);
1349           //fNodes->Add(sub2node);
1350           sub1node->cd();
1351           //
1352           // Place copy #11 of ITS5 directly in I565
1353           //
1354           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,1.9546,"");
1355           sub2node->SetLineColor(kColorITS);
1356           sub2node->SetVisibility(1);
1357           //fNodes->Add(sub2node);
1358           sub1node->cd();
1359           //
1360           // Place copy #12 of ITS5 directly in I565
1361           //
1362           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-1.9754,"");
1363           sub2node->SetLineColor(kColorITS);
1364           sub2node->SetVisibility(1);
1365           //fNodes->Add(sub2node);
1366           sub1node->cd();
1367           //
1368           // Place copy #13 of ITS5 directly in I565
1369           //
1370           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-5.8855,"");
1371           sub2node->SetLineColor(kColorITS);
1372           sub2node->SetVisibility(1);
1373           //fNodes->Add(sub2node);
1374           sub1node->cd();
1375           //
1376           // Place copy #14 of ITS5 directly in I565
1377           //
1378           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-9.8154,"");
1379           sub2node->SetLineColor(kColorITS);
1380           sub2node->SetVisibility(1);
1381           //fNodes->Add(sub2node);
1382           sub1node->cd();
1383           //
1384           // Place copy #15 of ITS5 directly in I565
1385           //
1386           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-13.7254,"");
1387           sub2node->SetLineColor(kColorITS);
1388           sub2node->SetVisibility(1);
1389           //fNodes->Add(sub2node);
1390           sub1node->cd();
1391           //
1392           // Place copy #16 of ITS5 directly in I565
1393           //
1394           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-17.6555,"");
1395           sub2node->SetLineColor(kColorITS);
1396           sub2node->SetVisibility(1);
1397           //fNodes->Add(sub2node);
1398           sub1node->cd();
1399           //
1400           // Place copy #17 of ITS5 directly in I565
1401           //
1402           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-21.5655,"");
1403           sub2node->SetLineColor(kColorITS);
1404           sub2node->SetVisibility(1);
1405           //fNodes->Add(sub2node);
1406           sub1node->cd();
1407           //
1408           // Place copy #18 of ITS5 directly in I565
1409           //
1410           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-25.4954,"");
1411           sub2node->SetLineColor(kColorITS);
1412           sub2node->SetVisibility(1);
1413           //fNodes->Add(sub2node);
1414           sub1node->cd();
1415           //
1416           // Place copy #19 of ITS5 directly in I565
1417           //
1418           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-29.4054,"");
1419           sub2node->SetLineColor(kColorITS);
1420           sub2node->SetVisibility(1);
1421           //fNodes->Add(sub2node);
1422           sub1node->cd();
1423           //
1424           // Place copy #20 of ITS5 directly in I565
1425           //
1426           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-33.3354,"");
1427           sub2node->SetLineColor(kColorITS);
1428           sub2node->SetVisibility(1);
1429           //fNodes->Add(sub2node);
1430           sub1node->cd();
1431           //
1432           // Place copy #21 of ITS5 directly in I565
1433           //
1434           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-37.2454,"");
1435           sub2node->SetLineColor(kColorITS);
1436           sub2node->SetVisibility(1);
1437           //fNodes->Add(sub2node);
1438           sub1node->cd();
1439           //
1440           // Place copy #22 of ITS5 directly in I565
1441           //
1442           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-41.1554,"");
1443           sub2node->SetLineColor(kColorITS);
1444           sub2node->SetVisibility(1);
1445           //fNodes->Add(sub2node);
1446           sub1node->cd();
1447        //fNodes->Add(sub1node);
1448        node->cd();
1449        //
1450        // Place copy #6 of I565 in IT56
1451        //
1452        sub1node = new TNode("I565","I565","I565",-30.8022,23.2608,0.,"rot511");
1453        sub1node->SetLineColor(kColorITS);
1454        sub1node->SetVisibility(0);
1455        sub1node->cd();
1456           //
1457           // Place copy #1 of ITS5 directly in I565
1458           //
1459           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,41.1546,"");
1460           sub2node->SetLineColor(kColorITS);
1461           sub2node->SetVisibility(1);
1462           //fNodes->Add(sub2node);
1463           sub1node->cd();
1464           //
1465           // Place copy #2 of ITS5 directly in I565
1466           //
1467           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,37.2246,"");
1468           sub2node->SetLineColor(kColorITS);
1469           sub2node->SetVisibility(1);
1470           //fNodes->Add(sub2node);
1471           sub1node->cd();
1472           //
1473           // Place copy #3 of ITS5 directly in I565
1474           //
1475           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,33.3146,"");
1476           sub2node->SetLineColor(kColorITS);
1477           sub2node->SetVisibility(1);
1478           //fNodes->Add(sub2node);
1479           sub1node->cd();
1480           //
1481           // Place copy #4 of ITS5 directly in I565
1482           //
1483           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,29.3846,"");
1484           sub2node->SetLineColor(kColorITS);
1485           sub2node->SetVisibility(1);
1486           //fNodes->Add(sub2node);
1487           sub1node->cd();
1488           //
1489           // Place copy #5 of ITS5 directly in I565
1490           //
1491           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,25.4746,"");
1492           sub2node->SetLineColor(kColorITS);
1493           sub2node->SetVisibility(1);
1494           //fNodes->Add(sub2node);
1495           sub1node->cd();
1496           //
1497           // Place copy #6 of ITS5 directly in I565
1498           //
1499           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,21.5446,"");
1500           sub2node->SetLineColor(kColorITS);
1501           sub2node->SetVisibility(1);
1502           //fNodes->Add(sub2node);
1503           sub1node->cd();
1504           //
1505           // Place copy #7 of ITS5 directly in I565
1506           //
1507           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,17.6346,"");
1508           sub2node->SetLineColor(kColorITS);
1509           sub2node->SetVisibility(1);
1510           //fNodes->Add(sub2node);
1511           sub1node->cd();
1512           //
1513           // Place copy #8 of ITS5 directly in I565
1514           //
1515           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,13.7046,"");
1516           sub2node->SetLineColor(kColorITS);
1517           sub2node->SetVisibility(1);
1518           //fNodes->Add(sub2node);
1519           sub1node->cd();
1520           //
1521           // Place copy #9 of ITS5 directly in I565
1522           //
1523           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,9.7946,"");
1524           sub2node->SetLineColor(kColorITS);
1525           sub2node->SetVisibility(1);
1526           //fNodes->Add(sub2node);
1527           sub1node->cd();
1528           //
1529           // Place copy #10 of ITS5 directly in I565
1530           //
1531           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,5.8645,"");
1532           sub2node->SetLineColor(kColorITS);
1533           sub2node->SetVisibility(1);
1534           //fNodes->Add(sub2node);
1535           sub1node->cd();
1536           //
1537           // Place copy #11 of ITS5 directly in I565
1538           //
1539           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,1.9546,"");
1540           sub2node->SetLineColor(kColorITS);
1541           sub2node->SetVisibility(1);
1542           //fNodes->Add(sub2node);
1543           sub1node->cd();
1544           //
1545           // Place copy #12 of ITS5 directly in I565
1546           //
1547           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-1.9754,"");
1548           sub2node->SetLineColor(kColorITS);
1549           sub2node->SetVisibility(1);
1550           //fNodes->Add(sub2node);
1551           sub1node->cd();
1552           //
1553           // Place copy #13 of ITS5 directly in I565
1554           //
1555           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-5.8855,"");
1556           sub2node->SetLineColor(kColorITS);
1557           sub2node->SetVisibility(1);
1558           //fNodes->Add(sub2node);
1559           sub1node->cd();
1560           //
1561           // Place copy #14 of ITS5 directly in I565
1562           //
1563           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-9.8154,"");
1564           sub2node->SetLineColor(kColorITS);
1565           sub2node->SetVisibility(1);
1566           //fNodes->Add(sub2node);
1567           sub1node->cd();
1568           //
1569           // Place copy #15 of ITS5 directly in I565
1570           //
1571           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-13.7254,"");
1572           sub2node->SetLineColor(kColorITS);
1573           sub2node->SetVisibility(1);
1574           //fNodes->Add(sub2node);
1575           sub1node->cd();
1576           //
1577           // Place copy #16 of ITS5 directly in I565
1578           //
1579           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-17.6555,"");
1580           sub2node->SetLineColor(kColorITS);
1581           sub2node->SetVisibility(1);
1582           //fNodes->Add(sub2node);
1583           sub1node->cd();
1584           //
1585           // Place copy #17 of ITS5 directly in I565
1586           //
1587           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-21.5655,"");
1588           sub2node->SetLineColor(kColorITS);
1589           sub2node->SetVisibility(1);
1590           //fNodes->Add(sub2node);
1591           sub1node->cd();
1592           //
1593           // Place copy #18 of ITS5 directly in I565
1594           //
1595           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-25.4954,"");
1596           sub2node->SetLineColor(kColorITS);
1597           sub2node->SetVisibility(1);
1598           //fNodes->Add(sub2node);
1599           sub1node->cd();
1600           //
1601           // Place copy #19 of ITS5 directly in I565
1602           //
1603           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-29.4054,"");
1604           sub2node->SetLineColor(kColorITS);
1605           sub2node->SetVisibility(1);
1606           //fNodes->Add(sub2node);
1607           sub1node->cd();
1608           //
1609           // Place copy #20 of ITS5 directly in I565
1610           //
1611           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-33.3354,"");
1612           sub2node->SetLineColor(kColorITS);
1613           sub2node->SetVisibility(1);
1614           //fNodes->Add(sub2node);
1615           sub1node->cd();
1616           //
1617           // Place copy #21 of ITS5 directly in I565
1618           //
1619           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-37.2454,"");
1620           sub2node->SetLineColor(kColorITS);
1621           sub2node->SetVisibility(1);
1622           //fNodes->Add(sub2node);
1623           sub1node->cd();
1624           //
1625           // Place copy #22 of ITS5 directly in I565
1626           //
1627           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-41.1554,"");
1628           sub2node->SetLineColor(kColorITS);
1629           sub2node->SetVisibility(1);
1630           //fNodes->Add(sub2node);
1631           sub1node->cd();
1632        //fNodes->Add(sub1node);
1633        node->cd();
1634        //
1635        // Place copy #7 of I565 in IT56
1636        //
1637        sub1node = new TNode("I565","I565","I565",-34.4146,17.1364,0.,"rot510");
1638        sub1node->SetLineColor(kColorITS);
1639        sub1node->SetVisibility(0);
1640        sub1node->cd();
1641           //
1642           // Place copy #1 of ITS5 directly in I565
1643           //
1644           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,41.1546,"");
1645           sub2node->SetLineColor(kColorITS);
1646           sub2node->SetVisibility(1);
1647           //fNodes->Add(sub2node);
1648           sub1node->cd();
1649           //
1650           // Place copy #2 of ITS5 directly in I565
1651           //
1652           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,37.2246,"");
1653           sub2node->SetLineColor(kColorITS);
1654           sub2node->SetVisibility(1);
1655           //fNodes->Add(sub2node);
1656           sub1node->cd();
1657           //
1658           // Place copy #3 of ITS5 directly in I565
1659           //
1660           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,33.3146,"");
1661           sub2node->SetLineColor(kColorITS);
1662           sub2node->SetVisibility(1);
1663           //fNodes->Add(sub2node);
1664           sub1node->cd();
1665           //
1666           // Place copy #4 of ITS5 directly in I565
1667           //
1668           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,29.3846,"");
1669           sub2node->SetLineColor(kColorITS);
1670           sub2node->SetVisibility(1);
1671           //fNodes->Add(sub2node);
1672           sub1node->cd();
1673           //
1674           // Place copy #5 of ITS5 directly in I565
1675           //
1676           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,25.4746,"");
1677           sub2node->SetLineColor(kColorITS);
1678           sub2node->SetVisibility(1);
1679           //fNodes->Add(sub2node);
1680           sub1node->cd();
1681           //
1682           // Place copy #6 of ITS5 directly in I565
1683           //
1684           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,21.5446,"");
1685           sub2node->SetLineColor(kColorITS);
1686           sub2node->SetVisibility(1);
1687           //fNodes->Add(sub2node);
1688           sub1node->cd();
1689           //
1690           // Place copy #7 of ITS5 directly in I565
1691           //
1692           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,17.6346,"");
1693           sub2node->SetLineColor(kColorITS);
1694           sub2node->SetVisibility(1);
1695           //fNodes->Add(sub2node);
1696           sub1node->cd();
1697           //
1698           // Place copy #8 of ITS5 directly in I565
1699           //
1700           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,13.7046,"");
1701           sub2node->SetLineColor(kColorITS);
1702           sub2node->SetVisibility(1);
1703           //fNodes->Add(sub2node);
1704           sub1node->cd();
1705           //
1706           // Place copy #9 of ITS5 directly in I565
1707           //
1708           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,9.7946,"");
1709           sub2node->SetLineColor(kColorITS);
1710           sub2node->SetVisibility(1);
1711           //fNodes->Add(sub2node);
1712           sub1node->cd();
1713           //
1714           // Place copy #10 of ITS5 directly in I565
1715           //
1716           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,5.8645,"");
1717           sub2node->SetLineColor(kColorITS);
1718           sub2node->SetVisibility(1);
1719           //fNodes->Add(sub2node);
1720           sub1node->cd();
1721           //
1722           // Place copy #11 of ITS5 directly in I565
1723           //
1724           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,1.9546,"");
1725           sub2node->SetLineColor(kColorITS);
1726           sub2node->SetVisibility(1);
1727           //fNodes->Add(sub2node);
1728           sub1node->cd();
1729           //
1730           // Place copy #12 of ITS5 directly in I565
1731           //
1732           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-1.9754,"");
1733           sub2node->SetLineColor(kColorITS);
1734           sub2node->SetVisibility(1);
1735           //fNodes->Add(sub2node);
1736           sub1node->cd();
1737           //
1738           // Place copy #13 of ITS5 directly in I565
1739           //
1740           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-5.8855,"");
1741           sub2node->SetLineColor(kColorITS);
1742           sub2node->SetVisibility(1);
1743           //fNodes->Add(sub2node);
1744           sub1node->cd();
1745           //
1746           // Place copy #14 of ITS5 directly in I565
1747           //
1748           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-9.8154,"");
1749           sub2node->SetLineColor(kColorITS);
1750           sub2node->SetVisibility(1);
1751           //fNodes->Add(sub2node);
1752           sub1node->cd();
1753           //
1754           // Place copy #15 of ITS5 directly in I565
1755           //
1756           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-13.7254,"");
1757           sub2node->SetLineColor(kColorITS);
1758           sub2node->SetVisibility(1);
1759           //fNodes->Add(sub2node);
1760           sub1node->cd();
1761           //
1762           // Place copy #16 of ITS5 directly in I565
1763           //
1764           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-17.6555,"");
1765           sub2node->SetLineColor(kColorITS);
1766           sub2node->SetVisibility(1);
1767           //fNodes->Add(sub2node);
1768           sub1node->cd();
1769           //
1770           // Place copy #17 of ITS5 directly in I565
1771           //
1772           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-21.5655,"");
1773           sub2node->SetLineColor(kColorITS);
1774           sub2node->SetVisibility(1);
1775           //fNodes->Add(sub2node);
1776           sub1node->cd();
1777           //
1778           // Place copy #18 of ITS5 directly in I565
1779           //
1780           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-25.4954,"");
1781           sub2node->SetLineColor(kColorITS);
1782           sub2node->SetVisibility(1);
1783           //fNodes->Add(sub2node);
1784           sub1node->cd();
1785           //
1786           // Place copy #19 of ITS5 directly in I565
1787           //
1788           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-29.4054,"");
1789           sub2node->SetLineColor(kColorITS);
1790           sub2node->SetVisibility(1);
1791           //fNodes->Add(sub2node);
1792           sub1node->cd();
1793           //
1794           // Place copy #20 of ITS5 directly in I565
1795           //
1796           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-33.3354,"");
1797           sub2node->SetLineColor(kColorITS);
1798           sub2node->SetVisibility(1);
1799           //fNodes->Add(sub2node);
1800           sub1node->cd();
1801           //
1802           // Place copy #21 of ITS5 directly in I565
1803           //
1804           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-37.2454,"");
1805           sub2node->SetLineColor(kColorITS);
1806           sub2node->SetVisibility(1);
1807           //fNodes->Add(sub2node);
1808           sub1node->cd();
1809           //
1810           // Place copy #22 of ITS5 directly in I565
1811           //
1812           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-41.1554,"");
1813           sub2node->SetLineColor(kColorITS);
1814           sub2node->SetVisibility(1);
1815           //fNodes->Add(sub2node);
1816           sub1node->cd();
1817        //fNodes->Add(sub1node);
1818        node->cd();
1819        //
1820        // Place copy #8 of I565 in IT56
1821        //
1822        sub1node = new TNode("I565","I565","I565",-37.1249,10.563,0.,"rot509");
1823        sub1node->SetLineColor(kColorITS);
1824        sub1node->SetVisibility(0);
1825        sub1node->cd();
1826           //
1827           // Place copy #1 of ITS5 directly in I565
1828           //
1829           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,41.1546,"");
1830           sub2node->SetLineColor(kColorITS);
1831           sub2node->SetVisibility(1);
1832           //fNodes->Add(sub2node);
1833           sub1node->cd();
1834           //
1835           // Place copy #2 of ITS5 directly in I565
1836           //
1837           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,37.2246,"");
1838           sub2node->SetLineColor(kColorITS);
1839           sub2node->SetVisibility(1);
1840           //fNodes->Add(sub2node);
1841           sub1node->cd();
1842           //
1843           // Place copy #3 of ITS5 directly in I565
1844           //
1845           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,33.3146,"");
1846           sub2node->SetLineColor(kColorITS);
1847           sub2node->SetVisibility(1);
1848           //fNodes->Add(sub2node);
1849           sub1node->cd();
1850           //
1851           // Place copy #4 of ITS5 directly in I565
1852           //
1853           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,29.3846,"");
1854           sub2node->SetLineColor(kColorITS);
1855           sub2node->SetVisibility(1);
1856           //fNodes->Add(sub2node);
1857           sub1node->cd();
1858           //
1859           // Place copy #5 of ITS5 directly in I565
1860           //
1861           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,25.4746,"");
1862           sub2node->SetLineColor(kColorITS);
1863           sub2node->SetVisibility(1);
1864           //fNodes->Add(sub2node);
1865           sub1node->cd();
1866           //
1867           // Place copy #6 of ITS5 directly in I565
1868           //
1869           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,21.5446,"");
1870           sub2node->SetLineColor(kColorITS);
1871           sub2node->SetVisibility(1);
1872           //fNodes->Add(sub2node);
1873           sub1node->cd();
1874           //
1875           // Place copy #7 of ITS5 directly in I565
1876           //
1877           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,17.6346,"");
1878           sub2node->SetLineColor(kColorITS);
1879           sub2node->SetVisibility(1);
1880           //fNodes->Add(sub2node);
1881           sub1node->cd();
1882           //
1883           // Place copy #8 of ITS5 directly in I565
1884           //
1885           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,13.7046,"");
1886           sub2node->SetLineColor(kColorITS);
1887           sub2node->SetVisibility(1);
1888           //fNodes->Add(sub2node);
1889           sub1node->cd();
1890           //
1891           // Place copy #9 of ITS5 directly in I565
1892           //
1893           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,9.7946,"");
1894           sub2node->SetLineColor(kColorITS);
1895           sub2node->SetVisibility(1);
1896           //fNodes->Add(sub2node);
1897           sub1node->cd();
1898           //
1899           // Place copy #10 of ITS5 directly in I565
1900           //
1901           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,5.8645,"");
1902           sub2node->SetLineColor(kColorITS);
1903           sub2node->SetVisibility(1);
1904           //fNodes->Add(sub2node);
1905           sub1node->cd();
1906           //
1907           // Place copy #11 of ITS5 directly in I565
1908           //
1909           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,1.9546,"");
1910           sub2node->SetLineColor(kColorITS);
1911           sub2node->SetVisibility(1);
1912           //fNodes->Add(sub2node);
1913           sub1node->cd();
1914           //
1915           // Place copy #12 of ITS5 directly in I565
1916           //
1917           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-1.9754,"");
1918           sub2node->SetLineColor(kColorITS);
1919           sub2node->SetVisibility(1);
1920           //fNodes->Add(sub2node);
1921           sub1node->cd();
1922           //
1923           // Place copy #13 of ITS5 directly in I565
1924           //
1925           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-5.8855,"");
1926           sub2node->SetLineColor(kColorITS);
1927           sub2node->SetVisibility(1);
1928           //fNodes->Add(sub2node);
1929           sub1node->cd();
1930           //
1931           // Place copy #14 of ITS5 directly in I565
1932           //
1933           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-9.8154,"");
1934           sub2node->SetLineColor(kColorITS);
1935           sub2node->SetVisibility(1);
1936           //fNodes->Add(sub2node);
1937           sub1node->cd();
1938           //
1939           // Place copy #15 of ITS5 directly in I565
1940           //
1941           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-13.7254,"");
1942           sub2node->SetLineColor(kColorITS);
1943           sub2node->SetVisibility(1);
1944           //fNodes->Add(sub2node);
1945           sub1node->cd();
1946           //
1947           // Place copy #16 of ITS5 directly in I565
1948           //
1949           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-17.6555,"");
1950           sub2node->SetLineColor(kColorITS);
1951           sub2node->SetVisibility(1);
1952           //fNodes->Add(sub2node);
1953           sub1node->cd();
1954           //
1955           // Place copy #17 of ITS5 directly in I565
1956           //
1957           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-21.5655,"");
1958           sub2node->SetLineColor(kColorITS);
1959           sub2node->SetVisibility(1);
1960           //fNodes->Add(sub2node);
1961           sub1node->cd();
1962           //
1963           // Place copy #18 of ITS5 directly in I565
1964           //
1965           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-25.4954,"");
1966           sub2node->SetLineColor(kColorITS);
1967           sub2node->SetVisibility(1);
1968           //fNodes->Add(sub2node);
1969           sub1node->cd();
1970           //
1971           // Place copy #19 of ITS5 directly in I565
1972           //
1973           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-29.4054,"");
1974           sub2node->SetLineColor(kColorITS);
1975           sub2node->SetVisibility(1);
1976           //fNodes->Add(sub2node);
1977           sub1node->cd();
1978           //
1979           // Place copy #20 of ITS5 directly in I565
1980           //
1981           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-33.3354,"");
1982           sub2node->SetLineColor(kColorITS);
1983           sub2node->SetVisibility(1);
1984           //fNodes->Add(sub2node);
1985           sub1node->cd();
1986           //
1987           // Place copy #21 of ITS5 directly in I565
1988           //
1989           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-37.2454,"");
1990           sub2node->SetLineColor(kColorITS);
1991           sub2node->SetVisibility(1);
1992           //fNodes->Add(sub2node);
1993           sub1node->cd();
1994           //
1995           // Place copy #22 of ITS5 directly in I565
1996           //
1997           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-41.1554,"");
1998           sub2node->SetLineColor(kColorITS);
1999           sub2node->SetVisibility(1);
2000           //fNodes->Add(sub2node);
2001           sub1node->cd();
2002        //fNodes->Add(sub1node);
2003        node->cd();
2004        //
2005        // Place copy #9 of I565 in IT56
2006        //
2007        sub1node = new TNode("I565","I565","I565",-38.281,3.5473,0.,"rot508");
2008        sub1node->SetLineColor(kColorITS);
2009        sub1node->SetVisibility(0);
2010        sub1node->cd();
2011           //
2012           // Place copy #1 of ITS5 directly in I565
2013           //
2014           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,41.1546,"");
2015           sub2node->SetLineColor(kColorITS);
2016           sub2node->SetVisibility(1);
2017           //fNodes->Add(sub2node);
2018           sub1node->cd();
2019           //
2020           // Place copy #2 of ITS5 directly in I565
2021           //
2022           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,37.2246,"");
2023           sub2node->SetLineColor(kColorITS);
2024           sub2node->SetVisibility(1);
2025           //fNodes->Add(sub2node);
2026           sub1node->cd();
2027           //
2028           // Place copy #3 of ITS5 directly in I565
2029           //
2030           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,33.3146,"");
2031           sub2node->SetLineColor(kColorITS);
2032           sub2node->SetVisibility(1);
2033           //fNodes->Add(sub2node);
2034           sub1node->cd();
2035           //
2036           // Place copy #4 of ITS5 directly in I565
2037           //
2038           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,29.3846,"");
2039           sub2node->SetLineColor(kColorITS);
2040           sub2node->SetVisibility(1);
2041           //fNodes->Add(sub2node);
2042           sub1node->cd();
2043           //
2044           // Place copy #5 of ITS5 directly in I565
2045           //
2046           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,25.4746,"");
2047           sub2node->SetLineColor(kColorITS);
2048           sub2node->SetVisibility(1);
2049           //fNodes->Add(sub2node);
2050           sub1node->cd();
2051           //
2052           // Place copy #6 of ITS5 directly in I565
2053           //
2054           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,21.5446,"");
2055           sub2node->SetLineColor(kColorITS);
2056           sub2node->SetVisibility(1);
2057           //fNodes->Add(sub2node);
2058           sub1node->cd();
2059           //
2060           // Place copy #7 of ITS5 directly in I565
2061           //
2062           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,17.6346,"");
2063           sub2node->SetLineColor(kColorITS);
2064           sub2node->SetVisibility(1);
2065           //fNodes->Add(sub2node);
2066           sub1node->cd();
2067           //
2068           // Place copy #8 of ITS5 directly in I565
2069           //
2070           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,13.7046,"");
2071           sub2node->SetLineColor(kColorITS);
2072           sub2node->SetVisibility(1);
2073           //fNodes->Add(sub2node);
2074           sub1node->cd();
2075           //
2076           // Place copy #9 of ITS5 directly in I565
2077           //
2078           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,9.7946,"");
2079           sub2node->SetLineColor(kColorITS);
2080           sub2node->SetVisibility(1);
2081           //fNodes->Add(sub2node);
2082           sub1node->cd();
2083           //
2084           // Place copy #10 of ITS5 directly in I565
2085           //
2086           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,5.8645,"");
2087           sub2node->SetLineColor(kColorITS);
2088           sub2node->SetVisibility(1);
2089           //fNodes->Add(sub2node);
2090           sub1node->cd();
2091           //
2092           // Place copy #11 of ITS5 directly in I565
2093           //
2094           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,1.9546,"");
2095           sub2node->SetLineColor(kColorITS);
2096           sub2node->SetVisibility(1);
2097           //fNodes->Add(sub2node);
2098           sub1node->cd();
2099           //
2100           // Place copy #12 of ITS5 directly in I565
2101           //
2102           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-1.9754,"");
2103           sub2node->SetLineColor(kColorITS);
2104           sub2node->SetVisibility(1);
2105           //fNodes->Add(sub2node);
2106           sub1node->cd();
2107           //
2108           // Place copy #13 of ITS5 directly in I565
2109           //
2110           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-5.8855,"");
2111           sub2node->SetLineColor(kColorITS);
2112           sub2node->SetVisibility(1);
2113           //fNodes->Add(sub2node);
2114           sub1node->cd();
2115           //
2116           // Place copy #14 of ITS5 directly in I565
2117           //
2118           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-9.8154,"");
2119           sub2node->SetLineColor(kColorITS);
2120           sub2node->SetVisibility(1);
2121           //fNodes->Add(sub2node);
2122           sub1node->cd();
2123           //
2124           // Place copy #15 of ITS5 directly in I565
2125           //
2126           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-13.7254,"");
2127           sub2node->SetLineColor(kColorITS);
2128           sub2node->SetVisibility(1);
2129           //fNodes->Add(sub2node);
2130           sub1node->cd();
2131           //
2132           // Place copy #16 of ITS5 directly in I565
2133           //
2134           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-17.6555,"");
2135           sub2node->SetLineColor(kColorITS);
2136           sub2node->SetVisibility(1);
2137           //fNodes->Add(sub2node);
2138           sub1node->cd();
2139           //
2140           // Place copy #17 of ITS5 directly in I565
2141           //
2142           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-21.5655,"");
2143           sub2node->SetLineColor(kColorITS);
2144           sub2node->SetVisibility(1);
2145           //fNodes->Add(sub2node);
2146           sub1node->cd();
2147           //
2148           // Place copy #18 of ITS5 directly in I565
2149           //
2150           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-25.4954,"");
2151           sub2node->SetLineColor(kColorITS);
2152           sub2node->SetVisibility(1);
2153           //fNodes->Add(sub2node);
2154           sub1node->cd();
2155           //
2156           // Place copy #19 of ITS5 directly in I565
2157           //
2158           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-29.4054,"");
2159           sub2node->SetLineColor(kColorITS);
2160           sub2node->SetVisibility(1);
2161           //fNodes->Add(sub2node);
2162           sub1node->cd();
2163           //
2164           // Place copy #20 of ITS5 directly in I565
2165           //
2166           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-33.3354,"");
2167           sub2node->SetLineColor(kColorITS);
2168           sub2node->SetVisibility(1);
2169           //fNodes->Add(sub2node);
2170           sub1node->cd();
2171           //
2172           // Place copy #21 of ITS5 directly in I565
2173           //
2174           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-37.2454,"");
2175           sub2node->SetLineColor(kColorITS);
2176           sub2node->SetVisibility(1);
2177           //fNodes->Add(sub2node);
2178           sub1node->cd();
2179           //
2180           // Place copy #22 of ITS5 directly in I565
2181           //
2182           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-41.1554,"");
2183           sub2node->SetLineColor(kColorITS);
2184           sub2node->SetVisibility(1);
2185           //fNodes->Add(sub2node);
2186           sub1node->cd();
2187        //fNodes->Add(sub1node);
2188        node->cd();
2189        //
2190        // Place copy #10 of I565 in IT56
2191        //
2192        sub1node = new TNode("I565","I565","I565",-38.4338,-3.5614,0.,"rot507");
2193        sub1node->SetLineColor(kColorITS);
2194        sub1node->SetVisibility(0);
2195        sub1node->cd();
2196           //
2197           // Place copy #1 of ITS5 directly in I565
2198           //
2199           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,41.1546,"");
2200           sub2node->SetLineColor(kColorITS);
2201           sub2node->SetVisibility(1);
2202           //fNodes->Add(sub2node);
2203           sub1node->cd();
2204           //
2205           // Place copy #2 of ITS5 directly in I565
2206           //
2207           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,37.2246,"");
2208           sub2node->SetLineColor(kColorITS);
2209           sub2node->SetVisibility(1);
2210           //fNodes->Add(sub2node);
2211           sub1node->cd();
2212           //
2213           // Place copy #3 of ITS5 directly in I565
2214           //
2215           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,33.3146,"");
2216           sub2node->SetLineColor(kColorITS);
2217           sub2node->SetVisibility(1);
2218           //fNodes->Add(sub2node);
2219           sub1node->cd();
2220           //
2221           // Place copy #4 of ITS5 directly in I565
2222           //
2223           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,29.3846,"");
2224           sub2node->SetLineColor(kColorITS);
2225           sub2node->SetVisibility(1);
2226           //fNodes->Add(sub2node);
2227           sub1node->cd();
2228           //
2229           // Place copy #5 of ITS5 directly in I565
2230           //
2231           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,25.4746,"");
2232           sub2node->SetLineColor(kColorITS);
2233           sub2node->SetVisibility(1);
2234           //fNodes->Add(sub2node);
2235           sub1node->cd();
2236           //
2237           // Place copy #6 of ITS5 directly in I565
2238           //
2239           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,21.5446,"");
2240           sub2node->SetLineColor(kColorITS);
2241           sub2node->SetVisibility(1);
2242           //fNodes->Add(sub2node);
2243           sub1node->cd();
2244           //
2245           // Place copy #7 of ITS5 directly in I565
2246           //
2247           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,17.6346,"");
2248           sub2node->SetLineColor(kColorITS);
2249           sub2node->SetVisibility(1);
2250           //fNodes->Add(sub2node);
2251           sub1node->cd();
2252           //
2253           // Place copy #8 of ITS5 directly in I565
2254           //
2255           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,13.7046,"");
2256           sub2node->SetLineColor(kColorITS);
2257           sub2node->SetVisibility(1);
2258           //fNodes->Add(sub2node);
2259           sub1node->cd();
2260           //
2261           // Place copy #9 of ITS5 directly in I565
2262           //
2263           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,9.7946,"");
2264           sub2node->SetLineColor(kColorITS);
2265           sub2node->SetVisibility(1);
2266           //fNodes->Add(sub2node);
2267           sub1node->cd();
2268           //
2269           // Place copy #10 of ITS5 directly in I565
2270           //
2271           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,5.8645,"");
2272           sub2node->SetLineColor(kColorITS);
2273           sub2node->SetVisibility(1);
2274           //fNodes->Add(sub2node);
2275           sub1node->cd();
2276           //
2277           // Place copy #11 of ITS5 directly in I565
2278           //
2279           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,1.9546,"");
2280           sub2node->SetLineColor(kColorITS);
2281           sub2node->SetVisibility(1);
2282           //fNodes->Add(sub2node);
2283           sub1node->cd();
2284           //
2285           // Place copy #12 of ITS5 directly in I565
2286           //
2287           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-1.9754,"");
2288           sub2node->SetLineColor(kColorITS);
2289           sub2node->SetVisibility(1);
2290           //fNodes->Add(sub2node);
2291           sub1node->cd();
2292           //
2293           // Place copy #13 of ITS5 directly in I565
2294           //
2295           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-5.8855,"");
2296           sub2node->SetLineColor(kColorITS);
2297           sub2node->SetVisibility(1);
2298           //fNodes->Add(sub2node);
2299           sub1node->cd();
2300           //
2301           // Place copy #14 of ITS5 directly in I565
2302           //
2303           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-9.8154,"");
2304           sub2node->SetLineColor(kColorITS);
2305           sub2node->SetVisibility(1);
2306           //fNodes->Add(sub2node);
2307           sub1node->cd();
2308           //
2309           // Place copy #15 of ITS5 directly in I565
2310           //
2311           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-13.7254,"");
2312           sub2node->SetLineColor(kColorITS);
2313           sub2node->SetVisibility(1);
2314           //fNodes->Add(sub2node);
2315           sub1node->cd();
2316           //
2317           // Place copy #16 of ITS5 directly in I565
2318           //
2319           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-17.6555,"");
2320           sub2node->SetLineColor(kColorITS);
2321           sub2node->SetVisibility(1);
2322           //fNodes->Add(sub2node);
2323           sub1node->cd();
2324           //
2325           // Place copy #17 of ITS5 directly in I565
2326           //
2327           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-21.5655,"");
2328           sub2node->SetLineColor(kColorITS);
2329           sub2node->SetVisibility(1);
2330           //fNodes->Add(sub2node);
2331           sub1node->cd();
2332           //
2333           // Place copy #18 of ITS5 directly in I565
2334           //
2335           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-25.4954,"");
2336           sub2node->SetLineColor(kColorITS);
2337           sub2node->SetVisibility(1);
2338           //fNodes->Add(sub2node);
2339           sub1node->cd();
2340           //
2341           // Place copy #19 of ITS5 directly in I565
2342           //
2343           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-29.4054,"");
2344           sub2node->SetLineColor(kColorITS);
2345           sub2node->SetVisibility(1);
2346           //fNodes->Add(sub2node);
2347           sub1node->cd();
2348           //
2349           // Place copy #20 of ITS5 directly in I565
2350           //
2351           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-33.3354,"");
2352           sub2node->SetLineColor(kColorITS);
2353           sub2node->SetVisibility(1);
2354           //fNodes->Add(sub2node);
2355           sub1node->cd();
2356           //
2357           // Place copy #21 of ITS5 directly in I565
2358           //
2359           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-37.2454,"");
2360           sub2node->SetLineColor(kColorITS);
2361           sub2node->SetVisibility(1);
2362           //fNodes->Add(sub2node);
2363           sub1node->cd();
2364           //
2365           // Place copy #22 of ITS5 directly in I565
2366           //
2367           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-41.1554,"");
2368           sub2node->SetLineColor(kColorITS);
2369           sub2node->SetVisibility(1);
2370           //fNodes->Add(sub2node);
2371           sub1node->cd();
2372        //fNodes->Add(sub1node);
2373        node->cd();
2374        //
2375        // Place copy #11 of I565 in IT56
2376        //
2377        sub1node = new TNode("I565","I565","I565",-36.9774,-10.521,0.,"rot506");
2378        sub1node->SetLineColor(kColorITS);
2379        sub1node->SetVisibility(0);
2380        sub1node->cd();
2381           //
2382           // Place copy #1 of ITS5 directly in I565
2383           //
2384           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,41.1546,"");
2385           sub2node->SetLineColor(kColorITS);
2386           sub2node->SetVisibility(1);
2387           //fNodes->Add(sub2node);
2388           sub1node->cd();
2389           //
2390           // Place copy #2 of ITS5 directly in I565
2391           //
2392           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,37.2246,"");
2393           sub2node->SetLineColor(kColorITS);
2394           sub2node->SetVisibility(1);
2395           //fNodes->Add(sub2node);
2396           sub1node->cd();
2397           //
2398           // Place copy #3 of ITS5 directly in I565
2399           //
2400           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,33.3146,"");
2401           sub2node->SetLineColor(kColorITS);
2402           sub2node->SetVisibility(1);
2403           //fNodes->Add(sub2node);
2404           sub1node->cd();
2405           //
2406           // Place copy #4 of ITS5 directly in I565
2407           //
2408           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,29.3846,"");
2409           sub2node->SetLineColor(kColorITS);
2410           sub2node->SetVisibility(1);
2411           //fNodes->Add(sub2node);
2412           sub1node->cd();
2413           //
2414           // Place copy #5 of ITS5 directly in I565
2415           //
2416           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,25.4746,"");
2417           sub2node->SetLineColor(kColorITS);
2418           sub2node->SetVisibility(1);
2419           //fNodes->Add(sub2node);
2420           sub1node->cd();
2421           //
2422           // Place copy #6 of ITS5 directly in I565
2423           //
2424           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,21.5446,"");
2425           sub2node->SetLineColor(kColorITS);
2426           sub2node->SetVisibility(1);
2427           //fNodes->Add(sub2node);
2428           sub1node->cd();
2429           //
2430           // Place copy #7 of ITS5 directly in I565
2431           //
2432           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,17.6346,"");
2433           sub2node->SetLineColor(kColorITS);
2434           sub2node->SetVisibility(1);
2435           //fNodes->Add(sub2node);
2436           sub1node->cd();
2437           //
2438           // Place copy #8 of ITS5 directly in I565
2439           //
2440           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,13.7046,"");
2441           sub2node->SetLineColor(kColorITS);
2442           sub2node->SetVisibility(1);
2443           //fNodes->Add(sub2node);
2444           sub1node->cd();
2445           //
2446           // Place copy #9 of ITS5 directly in I565
2447           //
2448           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,9.7946,"");
2449           sub2node->SetLineColor(kColorITS);
2450           sub2node->SetVisibility(1);
2451           //fNodes->Add(sub2node);
2452           sub1node->cd();
2453           //
2454           // Place copy #10 of ITS5 directly in I565
2455           //
2456           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,5.8645,"");
2457           sub2node->SetLineColor(kColorITS);
2458           sub2node->SetVisibility(1);
2459           //fNodes->Add(sub2node);
2460           sub1node->cd();
2461           //
2462           // Place copy #11 of ITS5 directly in I565
2463           //
2464           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,1.9546,"");
2465           sub2node->SetLineColor(kColorITS);
2466           sub2node->SetVisibility(1);
2467           //fNodes->Add(sub2node);
2468           sub1node->cd();
2469           //
2470           // Place copy #12 of ITS5 directly in I565
2471           //
2472           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-1.9754,"");
2473           sub2node->SetLineColor(kColorITS);
2474           sub2node->SetVisibility(1);
2475           //fNodes->Add(sub2node);
2476           sub1node->cd();
2477           //
2478           // Place copy #13 of ITS5 directly in I565
2479           //
2480           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-5.8855,"");
2481           sub2node->SetLineColor(kColorITS);
2482           sub2node->SetVisibility(1);
2483           //fNodes->Add(sub2node);
2484           sub1node->cd();
2485           //
2486           // Place copy #14 of ITS5 directly in I565
2487           //
2488           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-9.8154,"");
2489           sub2node->SetLineColor(kColorITS);
2490           sub2node->SetVisibility(1);
2491           //fNodes->Add(sub2node);
2492           sub1node->cd();
2493           //
2494           // Place copy #15 of ITS5 directly in I565
2495           //
2496           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-13.7254,"");
2497           sub2node->SetLineColor(kColorITS);
2498           sub2node->SetVisibility(1);
2499           //fNodes->Add(sub2node);
2500           sub1node->cd();
2501           //
2502           // Place copy #16 of ITS5 directly in I565
2503           //
2504           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-17.6555,"");
2505           sub2node->SetLineColor(kColorITS);
2506           sub2node->SetVisibility(1);
2507           //fNodes->Add(sub2node);
2508           sub1node->cd();
2509           //
2510           // Place copy #17 of ITS5 directly in I565
2511           //
2512           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-21.5655,"");
2513           sub2node->SetLineColor(kColorITS);
2514           sub2node->SetVisibility(1);
2515           //fNodes->Add(sub2node);
2516           sub1node->cd();
2517           //
2518           // Place copy #18 of ITS5 directly in I565
2519           //
2520           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-25.4954,"");
2521           sub2node->SetLineColor(kColorITS);
2522           sub2node->SetVisibility(1);
2523           //fNodes->Add(sub2node);
2524           sub1node->cd();
2525           //
2526           // Place copy #19 of ITS5 directly in I565
2527           //
2528           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-29.4054,"");
2529           sub2node->SetLineColor(kColorITS);
2530           sub2node->SetVisibility(1);
2531           //fNodes->Add(sub2node);
2532           sub1node->cd();
2533           //
2534           // Place copy #20 of ITS5 directly in I565
2535           //
2536           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-33.3354,"");
2537           sub2node->SetLineColor(kColorITS);
2538           sub2node->SetVisibility(1);
2539           //fNodes->Add(sub2node);
2540           sub1node->cd();
2541           //
2542           // Place copy #21 of ITS5 directly in I565
2543           //
2544           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-37.2454,"");
2545           sub2node->SetLineColor(kColorITS);
2546           sub2node->SetVisibility(1);
2547           //fNodes->Add(sub2node);
2548           sub1node->cd();
2549           //
2550           // Place copy #22 of ITS5 directly in I565
2551           //
2552           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-41.1554,"");
2553           sub2node->SetLineColor(kColorITS);
2554           sub2node->SetVisibility(1);
2555           //fNodes->Add(sub2node);
2556           sub1node->cd();
2557        //fNodes->Add(sub1node);
2558        node->cd();
2559        //
2560        // Place copy #12 of I565 in IT56
2561        //
2562        sub1node = new TNode("I565","I565","I565",-34.5519,-17.2048,0.,"rot505");
2563        sub1node->SetLineColor(kColorITS);
2564        sub1node->SetVisibility(0);
2565        sub1node->cd();
2566           //
2567           // Place copy #1 of ITS5 directly in I565
2568           //
2569           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,41.1546,"");
2570           sub2node->SetLineColor(kColorITS);
2571           sub2node->SetVisibility(1);
2572           //fNodes->Add(sub2node);
2573           sub1node->cd();
2574           //
2575           // Place copy #2 of ITS5 directly in I565
2576           //
2577           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,37.2246,"");
2578           sub2node->SetLineColor(kColorITS);
2579           sub2node->SetVisibility(1);
2580           //fNodes->Add(sub2node);
2581           sub1node->cd();
2582           //
2583           // Place copy #3 of ITS5 directly in I565
2584           //
2585           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,33.3146,"");
2586           sub2node->SetLineColor(kColorITS);
2587           sub2node->SetVisibility(1);
2588           //fNodes->Add(sub2node);
2589           sub1node->cd();
2590           //
2591           // Place copy #4 of ITS5 directly in I565
2592           //
2593           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,29.3846,"");
2594           sub2node->SetLineColor(kColorITS);
2595           sub2node->SetVisibility(1);
2596           //fNodes->Add(sub2node);
2597           sub1node->cd();
2598           //
2599           // Place copy #5 of ITS5 directly in I565
2600           //
2601           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,25.4746,"");
2602           sub2node->SetLineColor(kColorITS);
2603           sub2node->SetVisibility(1);
2604           //fNodes->Add(sub2node);
2605           sub1node->cd();
2606           //
2607           // Place copy #6 of ITS5 directly in I565
2608           //
2609           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,21.5446,"");
2610           sub2node->SetLineColor(kColorITS);
2611           sub2node->SetVisibility(1);
2612           //fNodes->Add(sub2node);
2613           sub1node->cd();
2614           //
2615           // Place copy #7 of ITS5 directly in I565
2616           //
2617           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,17.6346,"");
2618           sub2node->SetLineColor(kColorITS);
2619           sub2node->SetVisibility(1);
2620           //fNodes->Add(sub2node);
2621           sub1node->cd();
2622           //
2623           // Place copy #8 of ITS5 directly in I565
2624           //
2625           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,13.7046,"");
2626           sub2node->SetLineColor(kColorITS);
2627           sub2node->SetVisibility(1);
2628           //fNodes->Add(sub2node);
2629           sub1node->cd();
2630           //
2631           // Place copy #9 of ITS5 directly in I565
2632           //
2633           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,9.7946,"");
2634           sub2node->SetLineColor(kColorITS);
2635           sub2node->SetVisibility(1);
2636           //fNodes->Add(sub2node);
2637           sub1node->cd();
2638           //
2639           // Place copy #10 of ITS5 directly in I565
2640           //
2641           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,5.8645,"");
2642           sub2node->SetLineColor(kColorITS);
2643           sub2node->SetVisibility(1);
2644           //fNodes->Add(sub2node);
2645           sub1node->cd();
2646           //
2647           // Place copy #11 of ITS5 directly in I565
2648           //
2649           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,1.9546,"");
2650           sub2node->SetLineColor(kColorITS);
2651           sub2node->SetVisibility(1);
2652           //fNodes->Add(sub2node);
2653           sub1node->cd();
2654           //
2655           // Place copy #12 of ITS5 directly in I565
2656           //
2657           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-1.9754,"");
2658           sub2node->SetLineColor(kColorITS);
2659           sub2node->SetVisibility(1);
2660           //fNodes->Add(sub2node);
2661           sub1node->cd();
2662           //
2663           // Place copy #13 of ITS5 directly in I565
2664           //
2665           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-5.8855,"");
2666           sub2node->SetLineColor(kColorITS);
2667           sub2node->SetVisibility(1);
2668           //fNodes->Add(sub2node);
2669           sub1node->cd();
2670           //
2671           // Place copy #14 of ITS5 directly in I565
2672           //
2673           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-9.8154,"");
2674           sub2node->SetLineColor(kColorITS);
2675           sub2node->SetVisibility(1);
2676           //fNodes->Add(sub2node);
2677           sub1node->cd();
2678           //
2679           // Place copy #15 of ITS5 directly in I565
2680           //
2681           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-13.7254,"");
2682           sub2node->SetLineColor(kColorITS);
2683           sub2node->SetVisibility(1);
2684           //fNodes->Add(sub2node);
2685           sub1node->cd();
2686           //
2687           // Place copy #16 of ITS5 directly in I565
2688           //
2689           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-17.6555,"");
2690           sub2node->SetLineColor(kColorITS);
2691           sub2node->SetVisibility(1);
2692           //fNodes->Add(sub2node);
2693           sub1node->cd();
2694           //
2695           // Place copy #17 of ITS5 directly in I565
2696           //
2697           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-21.5655,"");
2698           sub2node->SetLineColor(kColorITS);
2699           sub2node->SetVisibility(1);
2700           //fNodes->Add(sub2node);
2701           sub1node->cd();
2702           //
2703           // Place copy #18 of ITS5 directly in I565
2704           //
2705           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-25.4954,"");
2706           sub2node->SetLineColor(kColorITS);
2707           sub2node->SetVisibility(1);
2708           //fNodes->Add(sub2node);
2709           sub1node->cd();
2710           //
2711           // Place copy #19 of ITS5 directly in I565
2712           //
2713           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-29.4054,"");
2714           sub2node->SetLineColor(kColorITS);
2715           sub2node->SetVisibility(1);
2716           //fNodes->Add(sub2node);
2717           sub1node->cd();
2718           //
2719           // Place copy #20 of ITS5 directly in I565
2720           //
2721           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-33.3354,"");
2722           sub2node->SetLineColor(kColorITS);
2723           sub2node->SetVisibility(1);
2724           //fNodes->Add(sub2node);
2725           sub1node->cd();
2726           //
2727           // Place copy #21 of ITS5 directly in I565
2728           //
2729           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-37.2454,"");
2730           sub2node->SetLineColor(kColorITS);
2731           sub2node->SetVisibility(1);
2732           //fNodes->Add(sub2node);
2733           sub1node->cd();
2734           //
2735           // Place copy #22 of ITS5 directly in I565
2736           //
2737           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-41.1554,"");
2738           sub2node->SetLineColor(kColorITS);
2739           sub2node->SetVisibility(1);
2740           //fNodes->Add(sub2node);
2741           sub1node->cd();
2742        //fNodes->Add(sub1node);
2743        node->cd();
2744        //
2745        // Place copy #13 of I565 in IT56
2746        //
2747        sub1node = new TNode("I565","I565","I565",-30.6798,-23.1683,0.,"rot504");
2748        sub1node->SetLineColor(kColorITS);
2749        sub1node->SetVisibility(0);
2750        sub1node->cd();
2751           //
2752           // Place copy #1 of ITS5 directly in I565
2753           //
2754           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,41.1546,"");
2755           sub2node->SetLineColor(kColorITS);
2756           sub2node->SetVisibility(1);
2757           //fNodes->Add(sub2node);
2758           sub1node->cd();
2759           //
2760           // Place copy #2 of ITS5 directly in I565
2761           //
2762           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,37.2246,"");
2763           sub2node->SetLineColor(kColorITS);
2764           sub2node->SetVisibility(1);
2765           //fNodes->Add(sub2node);
2766           sub1node->cd();
2767           //
2768           // Place copy #3 of ITS5 directly in I565
2769           //
2770           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,33.3146,"");
2771           sub2node->SetLineColor(kColorITS);
2772           sub2node->SetVisibility(1);
2773           //fNodes->Add(sub2node);
2774           sub1node->cd();
2775           //
2776           // Place copy #4 of ITS5 directly in I565
2777           //
2778           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,29.3846,"");
2779           sub2node->SetLineColor(kColorITS);
2780           sub2node->SetVisibility(1);
2781           //fNodes->Add(sub2node);
2782           sub1node->cd();
2783           //
2784           // Place copy #5 of ITS5 directly in I565
2785           //
2786           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,25.4746,"");
2787           sub2node->SetLineColor(kColorITS);
2788           sub2node->SetVisibility(1);
2789           //fNodes->Add(sub2node);
2790           sub1node->cd();
2791           //
2792           // Place copy #6 of ITS5 directly in I565
2793           //
2794           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,21.5446,"");
2795           sub2node->SetLineColor(kColorITS);
2796           sub2node->SetVisibility(1);
2797           //fNodes->Add(sub2node);
2798           sub1node->cd();
2799           //
2800           // Place copy #7 of ITS5 directly in I565
2801           //
2802           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,17.6346,"");
2803           sub2node->SetLineColor(kColorITS);
2804           sub2node->SetVisibility(1);
2805           //fNodes->Add(sub2node);
2806           sub1node->cd();
2807           //
2808           // Place copy #8 of ITS5 directly in I565
2809           //
2810           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,13.7046,"");
2811           sub2node->SetLineColor(kColorITS);
2812           sub2node->SetVisibility(1);
2813           //fNodes->Add(sub2node);
2814           sub1node->cd();
2815           //
2816           // Place copy #9 of ITS5 directly in I565
2817           //
2818           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,9.7946,"");
2819           sub2node->SetLineColor(kColorITS);
2820           sub2node->SetVisibility(1);
2821           //fNodes->Add(sub2node);
2822           sub1node->cd();
2823           //
2824           // Place copy #10 of ITS5 directly in I565
2825           //
2826           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,5.8645,"");
2827           sub2node->SetLineColor(kColorITS);
2828           sub2node->SetVisibility(1);
2829           //fNodes->Add(sub2node);
2830           sub1node->cd();
2831           //
2832           // Place copy #11 of ITS5 directly in I565
2833           //
2834           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,1.9546,"");
2835           sub2node->SetLineColor(kColorITS);
2836           sub2node->SetVisibility(1);
2837           //fNodes->Add(sub2node);
2838           sub1node->cd();
2839           //
2840           // Place copy #12 of ITS5 directly in I565
2841           //
2842           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-1.9754,"");
2843           sub2node->SetLineColor(kColorITS);
2844           sub2node->SetVisibility(1);
2845           //fNodes->Add(sub2node);
2846           sub1node->cd();
2847           //
2848           // Place copy #13 of ITS5 directly in I565
2849           //
2850           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-5.8855,"");
2851           sub2node->SetLineColor(kColorITS);
2852           sub2node->SetVisibility(1);
2853           //fNodes->Add(sub2node);
2854           sub1node->cd();
2855           //
2856           // Place copy #14 of ITS5 directly in I565
2857           //
2858           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-9.8154,"");
2859           sub2node->SetLineColor(kColorITS);
2860           sub2node->SetVisibility(1);
2861           //fNodes->Add(sub2node);
2862           sub1node->cd();
2863           //
2864           // Place copy #15 of ITS5 directly in I565
2865           //
2866           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-13.7254,"");
2867           sub2node->SetLineColor(kColorITS);
2868           sub2node->SetVisibility(1);
2869           //fNodes->Add(sub2node);
2870           sub1node->cd();
2871           //
2872           // Place copy #16 of ITS5 directly in I565
2873           //
2874           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-17.6555,"");
2875           sub2node->SetLineColor(kColorITS);
2876           sub2node->SetVisibility(1);
2877           //fNodes->Add(sub2node);
2878           sub1node->cd();
2879           //
2880           // Place copy #17 of ITS5 directly in I565
2881           //
2882           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-21.5655,"");
2883           sub2node->SetLineColor(kColorITS);
2884           sub2node->SetVisibility(1);
2885           //fNodes->Add(sub2node);
2886           sub1node->cd();
2887           //
2888           // Place copy #18 of ITS5 directly in I565
2889           //
2890           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-25.4954,"");
2891           sub2node->SetLineColor(kColorITS);
2892           sub2node->SetVisibility(1);
2893           //fNodes->Add(sub2node);
2894           sub1node->cd();
2895           //
2896           // Place copy #19 of ITS5 directly in I565
2897           //
2898           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-29.4054,"");
2899           sub2node->SetLineColor(kColorITS);
2900           sub2node->SetVisibility(1);
2901           //fNodes->Add(sub2node);
2902           sub1node->cd();
2903           //
2904           // Place copy #20 of ITS5 directly in I565
2905           //
2906           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-33.3354,"");
2907           sub2node->SetLineColor(kColorITS);
2908           sub2node->SetVisibility(1);
2909           //fNodes->Add(sub2node);
2910           sub1node->cd();
2911           //
2912           // Place copy #21 of ITS5 directly in I565
2913           //
2914           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-37.2454,"");
2915           sub2node->SetLineColor(kColorITS);
2916           sub2node->SetVisibility(1);
2917           //fNodes->Add(sub2node);
2918           sub1node->cd();
2919           //
2920           // Place copy #22 of ITS5 directly in I565
2921           //
2922           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-41.1554,"");
2923           sub2node->SetLineColor(kColorITS);
2924           sub2node->SetVisibility(1);
2925           //fNodes->Add(sub2node);
2926           sub1node->cd();
2927        //fNodes->Add(sub1node);
2928        node->cd();
2929        //
2930        // Place copy #14 of I565 in IT56
2931        //
2932        sub1node = new TNode("I565","I565","I565",-26.0036,-28.5246,0.,"rot503");
2933        sub1node->SetLineColor(kColorITS);
2934        sub1node->SetVisibility(0);
2935        sub1node->cd();
2936           //
2937           // Place copy #1 of ITS5 directly in I565
2938           //
2939           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,41.1546,"");
2940           sub2node->SetLineColor(kColorITS);
2941           sub2node->SetVisibility(1);
2942           //fNodes->Add(sub2node);
2943           sub1node->cd();
2944           //
2945           // Place copy #2 of ITS5 directly in I565
2946           //
2947           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,37.2246,"");
2948           sub2node->SetLineColor(kColorITS);
2949           sub2node->SetVisibility(1);
2950           //fNodes->Add(sub2node);
2951           sub1node->cd();
2952           //
2953           // Place copy #3 of ITS5 directly in I565
2954           //
2955           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,33.3146,"");
2956           sub2node->SetLineColor(kColorITS);
2957           sub2node->SetVisibility(1);
2958           //fNodes->Add(sub2node);
2959           sub1node->cd();
2960           //
2961           // Place copy #4 of ITS5 directly in I565
2962           //
2963           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,29.3846,"");
2964           sub2node->SetLineColor(kColorITS);
2965           sub2node->SetVisibility(1);
2966           //fNodes->Add(sub2node);
2967           sub1node->cd();
2968           //
2969           // Place copy #5 of ITS5 directly in I565
2970           //
2971           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,25.4746,"");
2972           sub2node->SetLineColor(kColorITS);
2973           sub2node->SetVisibility(1);
2974           //fNodes->Add(sub2node);
2975           sub1node->cd();
2976           //
2977           // Place copy #6 of ITS5 directly in I565
2978           //
2979           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,21.5446,"");
2980           sub2node->SetLineColor(kColorITS);
2981           sub2node->SetVisibility(1);
2982           //fNodes->Add(sub2node);
2983           sub1node->cd();
2984           //
2985           // Place copy #7 of ITS5 directly in I565
2986           //
2987           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,17.6346,"");
2988           sub2node->SetLineColor(kColorITS);
2989           sub2node->SetVisibility(1);
2990           //fNodes->Add(sub2node);
2991           sub1node->cd();
2992           //
2993           // Place copy #8 of ITS5 directly in I565
2994           //
2995           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,13.7046,"");
2996           sub2node->SetLineColor(kColorITS);
2997           sub2node->SetVisibility(1);
2998           //fNodes->Add(sub2node);
2999           sub1node->cd();
3000           //
3001           // Place copy #9 of ITS5 directly in I565
3002           //
3003           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,9.7946,"");
3004           sub2node->SetLineColor(kColorITS);
3005           sub2node->SetVisibility(1);
3006           //fNodes->Add(sub2node);
3007           sub1node->cd();
3008           //
3009           // Place copy #10 of ITS5 directly in I565
3010           //
3011           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,5.8645,"");
3012           sub2node->SetLineColor(kColorITS);
3013           sub2node->SetVisibility(1);
3014           //fNodes->Add(sub2node);
3015           sub1node->cd();
3016           //
3017           // Place copy #11 of ITS5 directly in I565
3018           //
3019           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,1.9546,"");
3020           sub2node->SetLineColor(kColorITS);
3021           sub2node->SetVisibility(1);
3022           //fNodes->Add(sub2node);
3023           sub1node->cd();
3024           //
3025           // Place copy #12 of ITS5 directly in I565
3026           //
3027           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-1.9754,"");
3028           sub2node->SetLineColor(kColorITS);
3029           sub2node->SetVisibility(1);
3030           //fNodes->Add(sub2node);
3031           sub1node->cd();
3032           //
3033           // Place copy #13 of ITS5 directly in I565
3034           //
3035           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-5.8855,"");
3036           sub2node->SetLineColor(kColorITS);
3037           sub2node->SetVisibility(1);
3038           //fNodes->Add(sub2node);
3039           sub1node->cd();
3040           //
3041           // Place copy #14 of ITS5 directly in I565
3042           //
3043           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-9.8154,"");
3044           sub2node->SetLineColor(kColorITS);
3045           sub2node->SetVisibility(1);
3046           //fNodes->Add(sub2node);
3047           sub1node->cd();
3048           //
3049           // Place copy #15 of ITS5 directly in I565
3050           //
3051           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-13.7254,"");
3052           sub2node->SetLineColor(kColorITS);
3053           sub2node->SetVisibility(1);
3054           //fNodes->Add(sub2node);
3055           sub1node->cd();
3056           //
3057           // Place copy #16 of ITS5 directly in I565
3058           //
3059           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-17.6555,"");
3060           sub2node->SetLineColor(kColorITS);
3061           sub2node->SetVisibility(1);
3062           //fNodes->Add(sub2node);
3063           sub1node->cd();
3064           //
3065           // Place copy #17 of ITS5 directly in I565
3066           //
3067           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-21.5655,"");
3068           sub2node->SetLineColor(kColorITS);
3069           sub2node->SetVisibility(1);
3070           //fNodes->Add(sub2node);
3071           sub1node->cd();
3072           //
3073           // Place copy #18 of ITS5 directly in I565
3074           //
3075           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-25.4954,"");
3076           sub2node->SetLineColor(kColorITS);
3077           sub2node->SetVisibility(1);
3078           //fNodes->Add(sub2node);
3079           sub1node->cd();
3080           //
3081           // Place copy #19 of ITS5 directly in I565
3082           //
3083           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-29.4054,"");
3084           sub2node->SetLineColor(kColorITS);
3085           sub2node->SetVisibility(1);
3086           //fNodes->Add(sub2node);
3087           sub1node->cd();
3088           //
3089           // Place copy #20 of ITS5 directly in I565
3090           //
3091           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-33.3354,"");
3092           sub2node->SetLineColor(kColorITS);
3093           sub2node->SetVisibility(1);
3094           //fNodes->Add(sub2node);
3095           sub1node->cd();
3096           //
3097           // Place copy #21 of ITS5 directly in I565
3098           //
3099           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-37.2454,"");
3100           sub2node->SetLineColor(kColorITS);
3101           sub2node->SetVisibility(1);
3102           //fNodes->Add(sub2node);
3103           sub1node->cd();
3104           //
3105           // Place copy #22 of ITS5 directly in I565
3106           //
3107           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-41.1554,"");
3108           sub2node->SetLineColor(kColorITS);
3109           sub2node->SetVisibility(1);
3110           //fNodes->Add(sub2node);
3111           sub1node->cd();
3112        //fNodes->Add(sub1node);
3113        node->cd();
3114        //
3115        // Place copy #15 of I565 in IT56
3116        //
3117        sub1node = new TNode("I565","I565","I565",-20.2387,-32.6866,0.,"rot501");
3118        sub1node->SetLineColor(kColorITS);
3119        sub1node->SetVisibility(0);
3120        sub1node->cd();
3121           //
3122           // Place copy #1 of ITS5 directly in I565
3123           //
3124           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,41.1546,"");
3125           sub2node->SetLineColor(kColorITS);
3126           sub2node->SetVisibility(1);
3127           //fNodes->Add(sub2node);
3128           sub1node->cd();
3129           //
3130           // Place copy #2 of ITS5 directly in I565
3131           //
3132           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,37.2246,"");
3133           sub2node->SetLineColor(kColorITS);
3134           sub2node->SetVisibility(1);
3135           //fNodes->Add(sub2node);
3136           sub1node->cd();
3137           //
3138           // Place copy #3 of ITS5 directly in I565
3139           //
3140           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,33.3146,"");
3141           sub2node->SetLineColor(kColorITS);
3142           sub2node->SetVisibility(1);
3143           //fNodes->Add(sub2node);
3144           sub1node->cd();
3145           //
3146           // Place copy #4 of ITS5 directly in I565
3147           //
3148           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,29.3846,"");
3149           sub2node->SetLineColor(kColorITS);
3150           sub2node->SetVisibility(1);
3151           //fNodes->Add(sub2node);
3152           sub1node->cd();
3153           //
3154           // Place copy #5 of ITS5 directly in I565
3155           //
3156           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,25.4746,"");
3157           sub2node->SetLineColor(kColorITS);
3158           sub2node->SetVisibility(1);
3159           //fNodes->Add(sub2node);
3160           sub1node->cd();
3161           //
3162           // Place copy #6 of ITS5 directly in I565
3163           //
3164           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,21.5446,"");
3165           sub2node->SetLineColor(kColorITS);
3166           sub2node->SetVisibility(1);
3167           //fNodes->Add(sub2node);
3168           sub1node->cd();
3169           //
3170           // Place copy #7 of ITS5 directly in I565
3171           //
3172           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,17.6346,"");
3173           sub2node->SetLineColor(kColorITS);
3174           sub2node->SetVisibility(1);
3175           //fNodes->Add(sub2node);
3176           sub1node->cd();
3177           //
3178           // Place copy #8 of ITS5 directly in I565
3179           //
3180           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,13.7046,"");
3181           sub2node->SetLineColor(kColorITS);
3182           sub2node->SetVisibility(1);
3183           //fNodes->Add(sub2node);
3184           sub1node->cd();
3185           //
3186           // Place copy #9 of ITS5 directly in I565
3187           //
3188           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,9.7946,"");
3189           sub2node->SetLineColor(kColorITS);
3190           sub2node->SetVisibility(1);
3191           //fNodes->Add(sub2node);
3192           sub1node->cd();
3193           //
3194           // Place copy #10 of ITS5 directly in I565
3195           //
3196           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,5.8645,"");
3197           sub2node->SetLineColor(kColorITS);
3198           sub2node->SetVisibility(1);
3199           //fNodes->Add(sub2node);
3200           sub1node->cd();
3201           //
3202           // Place copy #11 of ITS5 directly in I565
3203           //
3204           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,1.9546,"");
3205           sub2node->SetLineColor(kColorITS);
3206           sub2node->SetVisibility(1);
3207           //fNodes->Add(sub2node);
3208           sub1node->cd();
3209           //
3210           // Place copy #12 of ITS5 directly in I565
3211           //
3212           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-1.9754,"");
3213           sub2node->SetLineColor(kColorITS);
3214           sub2node->SetVisibility(1);
3215           //fNodes->Add(sub2node);
3216           sub1node->cd();
3217           //
3218           // Place copy #13 of ITS5 directly in I565
3219           //
3220           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-5.8855,"");
3221           sub2node->SetLineColor(kColorITS);
3222           sub2node->SetVisibility(1);
3223           //fNodes->Add(sub2node);
3224           sub1node->cd();
3225           //
3226           // Place copy #14 of ITS5 directly in I565
3227           //
3228           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-9.8154,"");
3229           sub2node->SetLineColor(kColorITS);
3230           sub2node->SetVisibility(1);
3231           //fNodes->Add(sub2node);
3232           sub1node->cd();
3233           //
3234           // Place copy #15 of ITS5 directly in I565
3235           //
3236           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-13.7254,"");
3237           sub2node->SetLineColor(kColorITS);
3238           sub2node->SetVisibility(1);
3239           //fNodes->Add(sub2node);
3240           sub1node->cd();
3241           //
3242           // Place copy #16 of ITS5 directly in I565
3243           //
3244           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-17.6555,"");
3245           sub2node->SetLineColor(kColorITS);
3246           sub2node->SetVisibility(1);
3247           //fNodes->Add(sub2node);
3248           sub1node->cd();
3249           //
3250           // Place copy #17 of ITS5 directly in I565
3251           //
3252           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-21.5655,"");
3253           sub2node->SetLineColor(kColorITS);
3254           sub2node->SetVisibility(1);
3255           //fNodes->Add(sub2node);
3256           sub1node->cd();
3257           //
3258           // Place copy #18 of ITS5 directly in I565
3259           //
3260           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-25.4954,"");
3261           sub2node->SetLineColor(kColorITS);
3262           sub2node->SetVisibility(1);
3263           //fNodes->Add(sub2node);
3264           sub1node->cd();
3265           //
3266           // Place copy #19 of ITS5 directly in I565
3267           //
3268           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-29.4054,"");
3269           sub2node->SetLineColor(kColorITS);
3270           sub2node->SetVisibility(1);
3271           //fNodes->Add(sub2node);
3272           sub1node->cd();
3273           //
3274           // Place copy #20 of ITS5 directly in I565
3275           //
3276           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-33.3354,"");
3277           sub2node->SetLineColor(kColorITS);
3278           sub2node->SetVisibility(1);
3279           //fNodes->Add(sub2node);
3280           sub1node->cd();
3281           //
3282           // Place copy #21 of ITS5 directly in I565
3283           //
3284           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-37.2454,"");
3285           sub2node->SetLineColor(kColorITS);
3286           sub2node->SetVisibility(1);
3287           //fNodes->Add(sub2node);
3288           sub1node->cd();
3289           //
3290           // Place copy #22 of ITS5 directly in I565
3291           //
3292           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-41.1554,"");
3293           sub2node->SetLineColor(kColorITS);
3294           sub2node->SetVisibility(1);
3295           //fNodes->Add(sub2node);
3296           sub1node->cd();
3297        //fNodes->Add(sub1node);
3298        node->cd();
3299        //
3300        // Place copy #16 of I565 in IT56
3301        //
3302        sub1node = new TNode("I565","I565","I565",-13.9434,-35.992,0.,"rot531");
3303        sub1node->SetLineColor(kColorITS);
3304        sub1node->SetVisibility(0);
3305        sub1node->cd();
3306           //
3307           // Place copy #1 of ITS5 directly in I565
3308           //
3309           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,41.1546,"");
3310           sub2node->SetLineColor(kColorITS);
3311           sub2node->SetVisibility(1);
3312           //fNodes->Add(sub2node);
3313           sub1node->cd();
3314           //
3315           // Place copy #2 of ITS5 directly in I565
3316           //
3317           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,37.2246,"");
3318           sub2node->SetLineColor(kColorITS);
3319           sub2node->SetVisibility(1);
3320           //fNodes->Add(sub2node);
3321           sub1node->cd();
3322           //
3323           // Place copy #3 of ITS5 directly in I565
3324           //
3325           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,33.3146,"");
3326           sub2node->SetLineColor(kColorITS);
3327           sub2node->SetVisibility(1);
3328           //fNodes->Add(sub2node);
3329           sub1node->cd();
3330           //
3331           // Place copy #4 of ITS5 directly in I565
3332           //
3333           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,29.3846,"");
3334           sub2node->SetLineColor(kColorITS);
3335           sub2node->SetVisibility(1);
3336           //fNodes->Add(sub2node);
3337           sub1node->cd();
3338           //
3339           // Place copy #5 of ITS5 directly in I565
3340           //
3341           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,25.4746,"");
3342           sub2node->SetLineColor(kColorITS);
3343           sub2node->SetVisibility(1);
3344           //fNodes->Add(sub2node);
3345           sub1node->cd();
3346           //
3347           // Place copy #6 of ITS5 directly in I565
3348           //
3349           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,21.5446,"");
3350           sub2node->SetLineColor(kColorITS);
3351           sub2node->SetVisibility(1);
3352           //fNodes->Add(sub2node);
3353           sub1node->cd();
3354           //
3355           // Place copy #7 of ITS5 directly in I565
3356           //
3357           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,17.6346,"");
3358           sub2node->SetLineColor(kColorITS);
3359           sub2node->SetVisibility(1);
3360           //fNodes->Add(sub2node);
3361           sub1node->cd();
3362           //
3363           // Place copy #8 of ITS5 directly in I565
3364           //
3365           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,13.7046,"");
3366           sub2node->SetLineColor(kColorITS);
3367           sub2node->SetVisibility(1);
3368           //fNodes->Add(sub2node);
3369           sub1node->cd();
3370           //
3371           // Place copy #9 of ITS5 directly in I565
3372           //
3373           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,9.7946,"");
3374           sub2node->SetLineColor(kColorITS);
3375           sub2node->SetVisibility(1);
3376           //fNodes->Add(sub2node);
3377           sub1node->cd();
3378           //
3379           // Place copy #10 of ITS5 directly in I565
3380           //
3381           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,5.8645,"");
3382           sub2node->SetLineColor(kColorITS);
3383           sub2node->SetVisibility(1);
3384           //fNodes->Add(sub2node);
3385           sub1node->cd();
3386           //
3387           // Place copy #11 of ITS5 directly in I565
3388           //
3389           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,1.9546,"");
3390           sub2node->SetLineColor(kColorITS);
3391           sub2node->SetVisibility(1);
3392           //fNodes->Add(sub2node);
3393           sub1node->cd();
3394           //
3395           // Place copy #12 of ITS5 directly in I565
3396           //
3397           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-1.9754,"");
3398           sub2node->SetLineColor(kColorITS);
3399           sub2node->SetVisibility(1);
3400           //fNodes->Add(sub2node);
3401           sub1node->cd();
3402           //
3403           // Place copy #13 of ITS5 directly in I565
3404           //
3405           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-5.8855,"");
3406           sub2node->SetLineColor(kColorITS);
3407           sub2node->SetVisibility(1);
3408           //fNodes->Add(sub2node);
3409           sub1node->cd();
3410           //
3411           // Place copy #14 of ITS5 directly in I565
3412           //
3413           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-9.8154,"");
3414           sub2node->SetLineColor(kColorITS);
3415           sub2node->SetVisibility(1);
3416           //fNodes->Add(sub2node);
3417           sub1node->cd();
3418           //
3419           // Place copy #15 of ITS5 directly in I565
3420           //
3421           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-13.7254,"");
3422           sub2node->SetLineColor(kColorITS);
3423           sub2node->SetVisibility(1);
3424           //fNodes->Add(sub2node);
3425           sub1node->cd();
3426           //
3427           // Place copy #16 of ITS5 directly in I565
3428           //
3429           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-17.6555,"");
3430           sub2node->SetLineColor(kColorITS);
3431           sub2node->SetVisibility(1);
3432           //fNodes->Add(sub2node);
3433           sub1node->cd();
3434           //
3435           // Place copy #17 of ITS5 directly in I565
3436           //
3437           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-21.5655,"");
3438           sub2node->SetLineColor(kColorITS);
3439           sub2node->SetVisibility(1);
3440           //fNodes->Add(sub2node);
3441           sub1node->cd();
3442           //
3443           // Place copy #18 of ITS5 directly in I565
3444           //
3445           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-25.4954,"");
3446           sub2node->SetLineColor(kColorITS);
3447           sub2node->SetVisibility(1);
3448           //fNodes->Add(sub2node);
3449           sub1node->cd();
3450           //
3451           // Place copy #19 of ITS5 directly in I565
3452           //
3453           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-29.4054,"");
3454           sub2node->SetLineColor(kColorITS);
3455           sub2node->SetVisibility(1);
3456           //fNodes->Add(sub2node);
3457           sub1node->cd();
3458           //
3459           // Place copy #20 of ITS5 directly in I565
3460           //
3461           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-33.3354,"");
3462           sub2node->SetLineColor(kColorITS);
3463           sub2node->SetVisibility(1);
3464           //fNodes->Add(sub2node);
3465           sub1node->cd();
3466           //
3467           // Place copy #21 of ITS5 directly in I565
3468           //
3469           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-37.2454,"");
3470           sub2node->SetLineColor(kColorITS);
3471           sub2node->SetVisibility(1);
3472           //fNodes->Add(sub2node);
3473           sub1node->cd();
3474           //
3475           // Place copy #22 of ITS5 directly in I565
3476           //
3477           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-41.1554,"");
3478           sub2node->SetLineColor(kColorITS);
3479           sub2node->SetVisibility(1);
3480           //fNodes->Add(sub2node);
3481           sub1node->cd();
3482        //fNodes->Add(sub1node);
3483        node->cd();
3484        //
3485        // Place copy #17 of I565 in IT56
3486        //
3487        sub1node = new TNode("I565","I565","I565",-7.0643,-37.7904,0.,"rot530");
3488        sub1node->SetLineColor(kColorITS);
3489        sub1node->SetVisibility(0);
3490        sub1node->cd();
3491           //
3492           // Place copy #1 of ITS5 directly in I565
3493           //
3494           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,41.1546,"");
3495           sub2node->SetLineColor(kColorITS);
3496           sub2node->SetVisibility(1);
3497           //fNodes->Add(sub2node);
3498           sub1node->cd();
3499           //
3500           // Place copy #2 of ITS5 directly in I565
3501           //
3502           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,37.2246,"");
3503           sub2node->SetLineColor(kColorITS);
3504           sub2node->SetVisibility(1);
3505           //fNodes->Add(sub2node);
3506           sub1node->cd();
3507           //
3508           // Place copy #3 of ITS5 directly in I565
3509           //
3510           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,33.3146,"");
3511           sub2node->SetLineColor(kColorITS);
3512           sub2node->SetVisibility(1);
3513           //fNodes->Add(sub2node);
3514           sub1node->cd();
3515           //
3516           // Place copy #4 of ITS5 directly in I565
3517           //
3518           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,29.3846,"");
3519           sub2node->SetLineColor(kColorITS);
3520           sub2node->SetVisibility(1);
3521           //fNodes->Add(sub2node);
3522           sub1node->cd();
3523           //
3524           // Place copy #5 of ITS5 directly in I565
3525           //
3526           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,25.4746,"");
3527           sub2node->SetLineColor(kColorITS);
3528           sub2node->SetVisibility(1);
3529           //fNodes->Add(sub2node);
3530           sub1node->cd();
3531           //
3532           // Place copy #6 of ITS5 directly in I565
3533           //
3534           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,21.5446,"");
3535           sub2node->SetLineColor(kColorITS);
3536           sub2node->SetVisibility(1);
3537           //fNodes->Add(sub2node);
3538           sub1node->cd();
3539           //
3540           // Place copy #7 of ITS5 directly in I565
3541           //
3542           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,17.6346,"");
3543           sub2node->SetLineColor(kColorITS);
3544           sub2node->SetVisibility(1);
3545           //fNodes->Add(sub2node);
3546           sub1node->cd();
3547           //
3548           // Place copy #8 of ITS5 directly in I565
3549           //
3550           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,13.7046,"");
3551           sub2node->SetLineColor(kColorITS);
3552           sub2node->SetVisibility(1);
3553           //fNodes->Add(sub2node);
3554           sub1node->cd();
3555           //
3556           // Place copy #9 of ITS5 directly in I565
3557           //
3558           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,9.7946,"");
3559           sub2node->SetLineColor(kColorITS);
3560           sub2node->SetVisibility(1);
3561           //fNodes->Add(sub2node);
3562           sub1node->cd();
3563           //
3564           // Place copy #10 of ITS5 directly in I565
3565           //
3566           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,5.8645,"");
3567           sub2node->SetLineColor(kColorITS);
3568           sub2node->SetVisibility(1);
3569           //fNodes->Add(sub2node);
3570           sub1node->cd();
3571           //
3572           // Place copy #11 of ITS5 directly in I565
3573           //
3574           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,1.9546,"");
3575           sub2node->SetLineColor(kColorITS);
3576           sub2node->SetVisibility(1);
3577           //fNodes->Add(sub2node);
3578           sub1node->cd();
3579           //
3580           // Place copy #12 of ITS5 directly in I565
3581           //
3582           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-1.9754,"");
3583           sub2node->SetLineColor(kColorITS);
3584           sub2node->SetVisibility(1);
3585           //fNodes->Add(sub2node);
3586           sub1node->cd();
3587           //
3588           // Place copy #13 of ITS5 directly in I565
3589           //
3590           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-5.8855,"");
3591           sub2node->SetLineColor(kColorITS);
3592           sub2node->SetVisibility(1);
3593           //fNodes->Add(sub2node);
3594           sub1node->cd();
3595           //
3596           // Place copy #14 of ITS5 directly in I565
3597           //
3598           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-9.8154,"");
3599           sub2node->SetLineColor(kColorITS);
3600           sub2node->SetVisibility(1);
3601           //fNodes->Add(sub2node);
3602           sub1node->cd();
3603           //
3604           // Place copy #15 of ITS5 directly in I565
3605           //
3606           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-13.7254,"");
3607           sub2node->SetLineColor(kColorITS);
3608           sub2node->SetVisibility(1);
3609           //fNodes->Add(sub2node);
3610           sub1node->cd();
3611           //
3612           // Place copy #16 of ITS5 directly in I565
3613           //
3614           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-17.6555,"");
3615           sub2node->SetLineColor(kColorITS);
3616           sub2node->SetVisibility(1);
3617           //fNodes->Add(sub2node);
3618           sub1node->cd();
3619           //
3620           // Place copy #17 of ITS5 directly in I565
3621           //
3622           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-21.5655,"");
3623           sub2node->SetLineColor(kColorITS);
3624           sub2node->SetVisibility(1);
3625           //fNodes->Add(sub2node);
3626           sub1node->cd();
3627           //
3628           // Place copy #18 of ITS5 directly in I565
3629           //
3630           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-25.4954,"");
3631           sub2node->SetLineColor(kColorITS);
3632           sub2node->SetVisibility(1);
3633           //fNodes->Add(sub2node);
3634           sub1node->cd();
3635           //
3636           // Place copy #19 of ITS5 directly in I565
3637           //
3638           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-29.4054,"");
3639           sub2node->SetLineColor(kColorITS);
3640           sub2node->SetVisibility(1);
3641           //fNodes->Add(sub2node);
3642           sub1node->cd();
3643           //
3644           // Place copy #20 of ITS5 directly in I565
3645           //
3646           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-33.3354,"");
3647           sub2node->SetLineColor(kColorITS);
3648           sub2node->SetVisibility(1);
3649           //fNodes->Add(sub2node);
3650           sub1node->cd();
3651           //
3652           // Place copy #21 of ITS5 directly in I565
3653           //
3654           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-37.2454,"");
3655           sub2node->SetLineColor(kColorITS);
3656           sub2node->SetVisibility(1);
3657           //fNodes->Add(sub2node);
3658           sub1node->cd();
3659           //
3660           // Place copy #22 of ITS5 directly in I565
3661           //
3662           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-41.1554,"");
3663           sub2node->SetLineColor(kColorITS);
3664           sub2node->SetVisibility(1);
3665           //fNodes->Add(sub2node);
3666           sub1node->cd();
3667        //fNodes->Add(sub1node);
3668        node->cd();
3669        //
3670        // Place copy #18 of I565 in IT56
3671        //
3672        sub1node = new TNode("I565","I565","I565",0.,-38.5984,0.,"rot533");
3673        sub1node->SetLineColor(kColorITS);
3674        sub1node->SetVisibility(0);
3675        sub1node->cd();
3676           //
3677           // Place copy #1 of ITS5 directly in I565
3678           //
3679           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,41.1546,"");
3680           sub2node->SetLineColor(kColorITS);
3681           sub2node->SetVisibility(1);
3682           //fNodes->Add(sub2node);
3683           sub1node->cd();
3684           //
3685           // Place copy #2 of ITS5 directly in I565
3686           //
3687           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,37.2246,"");
3688           sub2node->SetLineColor(kColorITS);
3689           sub2node->SetVisibility(1);
3690           //fNodes->Add(sub2node);
3691           sub1node->cd();
3692           //
3693           // Place copy #3 of ITS5 directly in I565
3694           //
3695           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,33.3146,"");
3696           sub2node->SetLineColor(kColorITS);
3697           sub2node->SetVisibility(1);
3698           //fNodes->Add(sub2node);
3699           sub1node->cd();
3700           //
3701           // Place copy #4 of ITS5 directly in I565
3702           //
3703           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,29.3846,"");
3704           sub2node->SetLineColor(kColorITS);
3705           sub2node->SetVisibility(1);
3706           //fNodes->Add(sub2node);
3707           sub1node->cd();
3708           //
3709           // Place copy #5 of ITS5 directly in I565
3710           //
3711           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,25.4746,"");
3712           sub2node->SetLineColor(kColorITS);
3713           sub2node->SetVisibility(1);
3714           //fNodes->Add(sub2node);
3715           sub1node->cd();
3716           //
3717           // Place copy #6 of ITS5 directly in I565
3718           //
3719           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,21.5446,"");
3720           sub2node->SetLineColor(kColorITS);
3721           sub2node->SetVisibility(1);
3722           //fNodes->Add(sub2node);
3723           sub1node->cd();
3724           //
3725           // Place copy #7 of ITS5 directly in I565
3726           //
3727           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,17.6346,"");
3728           sub2node->SetLineColor(kColorITS);
3729           sub2node->SetVisibility(1);
3730           //fNodes->Add(sub2node);
3731           sub1node->cd();
3732           //
3733           // Place copy #8 of ITS5 directly in I565
3734           //
3735           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,13.7046,"");
3736           sub2node->SetLineColor(kColorITS);
3737           sub2node->SetVisibility(1);
3738           //fNodes->Add(sub2node);
3739           sub1node->cd();
3740           //
3741           // Place copy #9 of ITS5 directly in I565
3742           //
3743           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,9.7946,"");
3744           sub2node->SetLineColor(kColorITS);
3745           sub2node->SetVisibility(1);
3746           //fNodes->Add(sub2node);
3747           sub1node->cd();
3748           //
3749           // Place copy #10 of ITS5 directly in I565
3750           //
3751           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,5.8645,"");
3752           sub2node->SetLineColor(kColorITS);
3753           sub2node->SetVisibility(1);
3754           //fNodes->Add(sub2node);
3755           sub1node->cd();
3756           //
3757           // Place copy #11 of ITS5 directly in I565
3758           //
3759           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,1.9546,"");
3760           sub2node->SetLineColor(kColorITS);
3761           sub2node->SetVisibility(1);
3762           //fNodes->Add(sub2node);
3763           sub1node->cd();
3764           //
3765           // Place copy #12 of ITS5 directly in I565
3766           //
3767           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-1.9754,"");
3768           sub2node->SetLineColor(kColorITS);
3769           sub2node->SetVisibility(1);
3770           //fNodes->Add(sub2node);
3771           sub1node->cd();
3772           //
3773           // Place copy #13 of ITS5 directly in I565
3774           //
3775           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-5.8855,"");
3776           sub2node->SetLineColor(kColorITS);
3777           sub2node->SetVisibility(1);
3778           //fNodes->Add(sub2node);
3779           sub1node->cd();
3780           //
3781           // Place copy #14 of ITS5 directly in I565
3782           //
3783           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-9.8154,"");
3784           sub2node->SetLineColor(kColorITS);
3785           sub2node->SetVisibility(1);
3786           //fNodes->Add(sub2node);
3787           sub1node->cd();
3788           //
3789           // Place copy #15 of ITS5 directly in I565
3790           //
3791           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-13.7254,"");
3792           sub2node->SetLineColor(kColorITS);
3793           sub2node->SetVisibility(1);
3794           //fNodes->Add(sub2node);
3795           sub1node->cd();
3796           //
3797           // Place copy #16 of ITS5 directly in I565
3798           //
3799           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-17.6555,"");
3800           sub2node->SetLineColor(kColorITS);
3801           sub2node->SetVisibility(1);
3802           //fNodes->Add(sub2node);
3803           sub1node->cd();
3804           //
3805           // Place copy #17 of ITS5 directly in I565
3806           //
3807           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-21.5655,"");
3808           sub2node->SetLineColor(kColorITS);
3809           sub2node->SetVisibility(1);
3810           //fNodes->Add(sub2node);
3811           sub1node->cd();
3812           //
3813           // Place copy #18 of ITS5 directly in I565
3814           //
3815           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-25.4954,"");
3816           sub2node->SetLineColor(kColorITS);
3817           sub2node->SetVisibility(1);
3818           //fNodes->Add(sub2node);
3819           sub1node->cd();
3820           //
3821           // Place copy #19 of ITS5 directly in I565
3822           //
3823           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-29.4054,"");
3824           sub2node->SetLineColor(kColorITS);
3825           sub2node->SetVisibility(1);
3826           //fNodes->Add(sub2node);
3827           sub1node->cd();
3828           //
3829           // Place copy #20 of ITS5 directly in I565
3830           //
3831           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-33.3354,"");
3832           sub2node->SetLineColor(kColorITS);
3833           sub2node->SetVisibility(1);
3834           //fNodes->Add(sub2node);
3835           sub1node->cd();
3836           //
3837           // Place copy #21 of ITS5 directly in I565
3838           //
3839           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-37.2454,"");
3840           sub2node->SetLineColor(kColorITS);
3841           sub2node->SetVisibility(1);
3842           //fNodes->Add(sub2node);
3843           sub1node->cd();
3844           //
3845           // Place copy #22 of ITS5 directly in I565
3846           //
3847           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-41.1554,"");
3848           sub2node->SetLineColor(kColorITS);
3849           sub2node->SetVisibility(1);
3850           //fNodes->Add(sub2node);
3851           sub1node->cd();
3852        //fNodes->Add(sub1node);
3853        node->cd();
3854        //
3855        // Place copy #19 of I565 in IT56
3856        //
3857        sub1node = new TNode("I565","I565","I565",7.0642,-37.7904,0.,"rot529");
3858        sub1node->SetLineColor(kColorITS);
3859        sub1node->SetVisibility(0);
3860        sub1node->cd();
3861           //
3862           // Place copy #1 of ITS5 directly in I565
3863           //
3864           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,41.1546,"");
3865           sub2node->SetLineColor(kColorITS);
3866           sub2node->SetVisibility(1);
3867           //fNodes->Add(sub2node);
3868           sub1node->cd();
3869           //
3870           // Place copy #2 of ITS5 directly in I565
3871           //
3872           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,37.2246,"");
3873           sub2node->SetLineColor(kColorITS);
3874           sub2node->SetVisibility(1);
3875           //fNodes->Add(sub2node);
3876           sub1node->cd();
3877           //
3878           // Place copy #3 of ITS5 directly in I565
3879           //
3880           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,33.3146,"");
3881           sub2node->SetLineColor(kColorITS);
3882           sub2node->SetVisibility(1);
3883           //fNodes->Add(sub2node);
3884           sub1node->cd();
3885           //
3886           // Place copy #4 of ITS5 directly in I565
3887           //
3888           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,29.3846,"");
3889           sub2node->SetLineColor(kColorITS);
3890           sub2node->SetVisibility(1);
3891           //fNodes->Add(sub2node);
3892           sub1node->cd();
3893           //
3894           // Place copy #5 of ITS5 directly in I565
3895           //
3896           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,25.4746,"");
3897           sub2node->SetLineColor(kColorITS);
3898           sub2node->SetVisibility(1);
3899           //fNodes->Add(sub2node);
3900           sub1node->cd();
3901           //
3902           // Place copy #6 of ITS5 directly in I565
3903           //
3904           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,21.5446,"");
3905           sub2node->SetLineColor(kColorITS);
3906           sub2node->SetVisibility(1);
3907           //fNodes->Add(sub2node);
3908           sub1node->cd();
3909           //
3910           // Place copy #7 of ITS5 directly in I565
3911           //
3912           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,17.6346,"");
3913           sub2node->SetLineColor(kColorITS);
3914           sub2node->SetVisibility(1);
3915           //fNodes->Add(sub2node);
3916           sub1node->cd();
3917           //
3918           // Place copy #8 of ITS5 directly in I565
3919           //
3920           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,13.7046,"");
3921           sub2node->SetLineColor(kColorITS);
3922           sub2node->SetVisibility(1);
3923           //fNodes->Add(sub2node);
3924           sub1node->cd();
3925           //
3926           // Place copy #9 of ITS5 directly in I565
3927           //
3928           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,9.7946,"");
3929           sub2node->SetLineColor(kColorITS);
3930           sub2node->SetVisibility(1);
3931           //fNodes->Add(sub2node);
3932           sub1node->cd();
3933           //
3934           // Place copy #10 of ITS5 directly in I565
3935           //
3936           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,5.8645,"");
3937           sub2node->SetLineColor(kColorITS);
3938           sub2node->SetVisibility(1);
3939           //fNodes->Add(sub2node);
3940           sub1node->cd();
3941           //
3942           // Place copy #11 of ITS5 directly in I565
3943           //
3944           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,1.9546,"");
3945           sub2node->SetLineColor(kColorITS);
3946           sub2node->SetVisibility(1);
3947           //fNodes->Add(sub2node);
3948           sub1node->cd();
3949           //
3950           // Place copy #12 of ITS5 directly in I565
3951           //
3952           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-1.9754,"");
3953           sub2node->SetLineColor(kColorITS);
3954           sub2node->SetVisibility(1);
3955           //fNodes->Add(sub2node);
3956           sub1node->cd();
3957           //
3958           // Place copy #13 of ITS5 directly in I565
3959           //
3960           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-5.8855,"");
3961           sub2node->SetLineColor(kColorITS);
3962           sub2node->SetVisibility(1);
3963           //fNodes->Add(sub2node);
3964           sub1node->cd();
3965           //
3966           // Place copy #14 of ITS5 directly in I565
3967           //
3968           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-9.8154,"");
3969           sub2node->SetLineColor(kColorITS);
3970           sub2node->SetVisibility(1);
3971           //fNodes->Add(sub2node);
3972           sub1node->cd();
3973           //
3974           // Place copy #15 of ITS5 directly in I565
3975           //
3976           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-13.7254,"");
3977           sub2node->SetLineColor(kColorITS);
3978           sub2node->SetVisibility(1);
3979           //fNodes->Add(sub2node);
3980           sub1node->cd();
3981           //
3982           // Place copy #16 of ITS5 directly in I565
3983           //
3984           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-17.6555,"");
3985           sub2node->SetLineColor(kColorITS);
3986           sub2node->SetVisibility(1);
3987           //fNodes->Add(sub2node);
3988           sub1node->cd();
3989           //
3990           // Place copy #17 of ITS5 directly in I565
3991           //
3992           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-21.5655,"");
3993           sub2node->SetLineColor(kColorITS);
3994           sub2node->SetVisibility(1);
3995           //fNodes->Add(sub2node);
3996           sub1node->cd();
3997           //
3998           // Place copy #18 of ITS5 directly in I565
3999           //
4000           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-25.4954,"");
4001           sub2node->SetLineColor(kColorITS);
4002           sub2node->SetVisibility(1);
4003           //fNodes->Add(sub2node);
4004           sub1node->cd();
4005           //
4006           // Place copy #19 of ITS5 directly in I565
4007           //
4008           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-29.4054,"");
4009           sub2node->SetLineColor(kColorITS);
4010           sub2node->SetVisibility(1);
4011           //fNodes->Add(sub2node);
4012           sub1node->cd();
4013           //
4014           // Place copy #20 of ITS5 directly in I565
4015           //
4016           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-33.3354,"");
4017           sub2node->SetLineColor(kColorITS);
4018           sub2node->SetVisibility(1);
4019           //fNodes->Add(sub2node);
4020           sub1node->cd();
4021           //
4022           // Place copy #21 of ITS5 directly in I565
4023           //
4024           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-37.2454,"");
4025           sub2node->SetLineColor(kColorITS);
4026           sub2node->SetVisibility(1);
4027           //fNodes->Add(sub2node);
4028           sub1node->cd();
4029           //
4030           // Place copy #22 of ITS5 directly in I565
4031           //
4032           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-41.1554,"");
4033           sub2node->SetLineColor(kColorITS);
4034           sub2node->SetVisibility(1);
4035           //fNodes->Add(sub2node);
4036           sub1node->cd();
4037        //fNodes->Add(sub1node);
4038        node->cd();
4039        //
4040        // Place copy #20 of I565 in IT56
4041        //
4042        sub1node = new TNode("I565","I565","I565",13.9433,-35.992,0.,"rot618");
4043        sub1node->SetLineColor(kColorITS);
4044        sub1node->SetVisibility(0);
4045        sub1node->cd();
4046           //
4047           // Place copy #1 of ITS5 directly in I565
4048           //
4049           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,41.1546,"");
4050           sub2node->SetLineColor(kColorITS);
4051           sub2node->SetVisibility(1);
4052           //fNodes->Add(sub2node);
4053           sub1node->cd();
4054           //
4055           // Place copy #2 of ITS5 directly in I565
4056           //
4057           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,37.2246,"");
4058           sub2node->SetLineColor(kColorITS);
4059           sub2node->SetVisibility(1);
4060           //fNodes->Add(sub2node);
4061           sub1node->cd();
4062           //
4063           // Place copy #3 of ITS5 directly in I565
4064           //
4065           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,33.3146,"");
4066           sub2node->SetLineColor(kColorITS);
4067           sub2node->SetVisibility(1);
4068           //fNodes->Add(sub2node);
4069           sub1node->cd();
4070           //
4071           // Place copy #4 of ITS5 directly in I565
4072           //
4073           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,29.3846,"");
4074           sub2node->SetLineColor(kColorITS);
4075           sub2node->SetVisibility(1);
4076           //fNodes->Add(sub2node);
4077           sub1node->cd();
4078           //
4079           // Place copy #5 of ITS5 directly in I565
4080           //
4081           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,25.4746,"");
4082           sub2node->SetLineColor(kColorITS);
4083           sub2node->SetVisibility(1);
4084           //fNodes->Add(sub2node);
4085           sub1node->cd();
4086           //
4087           // Place copy #6 of ITS5 directly in I565
4088           //
4089           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,21.5446,"");
4090           sub2node->SetLineColor(kColorITS);
4091           sub2node->SetVisibility(1);
4092           //fNodes->Add(sub2node);
4093           sub1node->cd();
4094           //
4095           // Place copy #7 of ITS5 directly in I565
4096           //
4097           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,17.6346,"");
4098           sub2node->SetLineColor(kColorITS);
4099           sub2node->SetVisibility(1);
4100           //fNodes->Add(sub2node);
4101           sub1node->cd();
4102           //
4103           // Place copy #8 of ITS5 directly in I565
4104           //
4105           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,13.7046,"");
4106           sub2node->SetLineColor(kColorITS);
4107           sub2node->SetVisibility(1);
4108           //fNodes->Add(sub2node);
4109           sub1node->cd();
4110           //
4111           // Place copy #9 of ITS5 directly in I565
4112           //
4113           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,9.7946,"");
4114           sub2node->SetLineColor(kColorITS);
4115           sub2node->SetVisibility(1);
4116           //fNodes->Add(sub2node);
4117           sub1node->cd();
4118           //
4119           // Place copy #10 of ITS5 directly in I565
4120           //
4121           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,5.8645,"");
4122           sub2node->SetLineColor(kColorITS);
4123           sub2node->SetVisibility(1);
4124           //fNodes->Add(sub2node);
4125           sub1node->cd();
4126           //
4127           // Place copy #11 of ITS5 directly in I565
4128           //
4129           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,1.9546,"");
4130           sub2node->SetLineColor(kColorITS);
4131           sub2node->SetVisibility(1);
4132           //fNodes->Add(sub2node);
4133           sub1node->cd();
4134           //
4135           // Place copy #12 of ITS5 directly in I565
4136           //
4137           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-1.9754,"");
4138           sub2node->SetLineColor(kColorITS);
4139           sub2node->SetVisibility(1);
4140           //fNodes->Add(sub2node);
4141           sub1node->cd();
4142           //
4143           // Place copy #13 of ITS5 directly in I565
4144           //
4145           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-5.8855,"");
4146           sub2node->SetLineColor(kColorITS);
4147           sub2node->SetVisibility(1);
4148           //fNodes->Add(sub2node);
4149           sub1node->cd();
4150           //
4151           // Place copy #14 of ITS5 directly in I565
4152           //
4153           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-9.8154,"");
4154           sub2node->SetLineColor(kColorITS);
4155           sub2node->SetVisibility(1);
4156           //fNodes->Add(sub2node);
4157           sub1node->cd();
4158           //
4159           // Place copy #15 of ITS5 directly in I565
4160           //
4161           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-13.7254,"");
4162           sub2node->SetLineColor(kColorITS);
4163           sub2node->SetVisibility(1);
4164           //fNodes->Add(sub2node);
4165           sub1node->cd();
4166           //
4167           // Place copy #16 of ITS5 directly in I565
4168           //
4169           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-17.6555,"");
4170           sub2node->SetLineColor(kColorITS);
4171           sub2node->SetVisibility(1);
4172           //fNodes->Add(sub2node);
4173           sub1node->cd();
4174           //
4175           // Place copy #17 of ITS5 directly in I565
4176           //
4177           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-21.5655,"");
4178           sub2node->SetLineColor(kColorITS);
4179           sub2node->SetVisibility(1);
4180           //fNodes->Add(sub2node);
4181           sub1node->cd();
4182           //
4183           // Place copy #18 of ITS5 directly in I565
4184           //
4185           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-25.4954,"");
4186           sub2node->SetLineColor(kColorITS);
4187           sub2node->SetVisibility(1);
4188           //fNodes->Add(sub2node);
4189           sub1node->cd();
4190           //
4191           // Place copy #19 of ITS5 directly in I565
4192           //
4193           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-29.4054,"");
4194           sub2node->SetLineColor(kColorITS);
4195           sub2node->SetVisibility(1);
4196           //fNodes->Add(sub2node);
4197           sub1node->cd();
4198           //
4199           // Place copy #20 of ITS5 directly in I565
4200           //
4201           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-33.3354,"");
4202           sub2node->SetLineColor(kColorITS);
4203           sub2node->SetVisibility(1);
4204           //fNodes->Add(sub2node);
4205           sub1node->cd();
4206           //
4207           // Place copy #21 of ITS5 directly in I565
4208           //
4209           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-37.2454,"");
4210           sub2node->SetLineColor(kColorITS);
4211           sub2node->SetVisibility(1);
4212           //fNodes->Add(sub2node);
4213           sub1node->cd();
4214           //
4215           // Place copy #22 of ITS5 directly in I565
4216           //
4217           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-41.1554,"");
4218           sub2node->SetLineColor(kColorITS);
4219           sub2node->SetVisibility(1);
4220           //fNodes->Add(sub2node);
4221           sub1node->cd();
4222        //fNodes->Add(sub1node);
4223        node->cd();
4224        //
4225        // Place copy #21 of I565 in IT56
4226        //
4227        sub1node = new TNode("I565","I565","I565",20.2387,-32.6866,0.,"rot528");
4228        sub1node->SetLineColor(kColorITS);
4229        sub1node->SetVisibility(0);
4230        sub1node->cd();
4231           //
4232           // Place copy #1 of ITS5 directly in I565
4233           //
4234           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,41.1546,"");
4235           sub2node->SetLineColor(kColorITS);
4236           sub2node->SetVisibility(1);
4237           //fNodes->Add(sub2node);
4238           sub1node->cd();
4239           //
4240           // Place copy #2 of ITS5 directly in I565
4241           //
4242           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,37.2246,"");
4243           sub2node->SetLineColor(kColorITS);
4244           sub2node->SetVisibility(1);
4245           //fNodes->Add(sub2node);
4246           sub1node->cd();
4247           //
4248           // Place copy #3 of ITS5 directly in I565
4249           //
4250           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,33.3146,"");
4251           sub2node->SetLineColor(kColorITS);
4252           sub2node->SetVisibility(1);
4253           //fNodes->Add(sub2node);
4254           sub1node->cd();
4255           //
4256           // Place copy #4 of ITS5 directly in I565
4257           //
4258           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,29.3846,"");
4259           sub2node->SetLineColor(kColorITS);
4260           sub2node->SetVisibility(1);
4261           //fNodes->Add(sub2node);
4262           sub1node->cd();
4263           //
4264           // Place copy #5 of ITS5 directly in I565
4265           //
4266           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,25.4746,"");
4267           sub2node->SetLineColor(kColorITS);
4268           sub2node->SetVisibility(1);
4269           //fNodes->Add(sub2node);
4270           sub1node->cd();
4271           //
4272           // Place copy #6 of ITS5 directly in I565
4273           //
4274           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,21.5446,"");
4275           sub2node->SetLineColor(kColorITS);
4276           sub2node->SetVisibility(1);
4277           //fNodes->Add(sub2node);
4278           sub1node->cd();
4279           //
4280           // Place copy #7 of ITS5 directly in I565
4281           //
4282           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,17.6346,"");
4283           sub2node->SetLineColor(kColorITS);
4284           sub2node->SetVisibility(1);
4285           //fNodes->Add(sub2node);
4286           sub1node->cd();
4287           //
4288           // Place copy #8 of ITS5 directly in I565
4289           //
4290           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,13.7046,"");
4291           sub2node->SetLineColor(kColorITS);
4292           sub2node->SetVisibility(1);
4293           //fNodes->Add(sub2node);
4294           sub1node->cd();
4295           //
4296           // Place copy #9 of ITS5 directly in I565
4297           //
4298           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,9.7946,"");
4299           sub2node->SetLineColor(kColorITS);
4300           sub2node->SetVisibility(1);
4301           //fNodes->Add(sub2node);
4302           sub1node->cd();
4303           //
4304           // Place copy #10 of ITS5 directly in I565
4305           //
4306           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,5.8645,"");
4307           sub2node->SetLineColor(kColorITS);
4308           sub2node->SetVisibility(1);
4309           //fNodes->Add(sub2node);
4310           sub1node->cd();
4311           //
4312           // Place copy #11 of ITS5 directly in I565
4313           //
4314           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,1.9546,"");
4315           sub2node->SetLineColor(kColorITS);
4316           sub2node->SetVisibility(1);
4317           //fNodes->Add(sub2node);
4318           sub1node->cd();
4319           //
4320           // Place copy #12 of ITS5 directly in I565
4321           //
4322           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-1.9754,"");
4323           sub2node->SetLineColor(kColorITS);
4324           sub2node->SetVisibility(1);
4325           //fNodes->Add(sub2node);
4326           sub1node->cd();
4327           //
4328           // Place copy #13 of ITS5 directly in I565
4329           //
4330           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-5.8855,"");
4331           sub2node->SetLineColor(kColorITS);
4332           sub2node->SetVisibility(1);
4333           //fNodes->Add(sub2node);
4334           sub1node->cd();
4335           //
4336           // Place copy #14 of ITS5 directly in I565
4337           //
4338           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-9.8154,"");
4339           sub2node->SetLineColor(kColorITS);
4340           sub2node->SetVisibility(1);
4341           //fNodes->Add(sub2node);
4342           sub1node->cd();
4343           //
4344           // Place copy #15 of ITS5 directly in I565
4345           //
4346           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-13.7254,"");
4347           sub2node->SetLineColor(kColorITS);
4348           sub2node->SetVisibility(1);
4349           //fNodes->Add(sub2node);
4350           sub1node->cd();
4351           //
4352           // Place copy #16 of ITS5 directly in I565
4353           //
4354           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-17.6555,"");
4355           sub2node->SetLineColor(kColorITS);
4356           sub2node->SetVisibility(1);
4357           //fNodes->Add(sub2node);
4358           sub1node->cd();
4359           //
4360           // Place copy #17 of ITS5 directly in I565
4361           //
4362           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-21.5655,"");
4363           sub2node->SetLineColor(kColorITS);
4364           sub2node->SetVisibility(1);
4365           //fNodes->Add(sub2node);
4366           sub1node->cd();
4367           //
4368           // Place copy #18 of ITS5 directly in I565
4369           //
4370           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-25.4954,"");
4371           sub2node->SetLineColor(kColorITS);
4372           sub2node->SetVisibility(1);
4373           //fNodes->Add(sub2node);
4374           sub1node->cd();
4375           //
4376           // Place copy #19 of ITS5 directly in I565
4377           //
4378           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-29.4054,"");
4379           sub2node->SetLineColor(kColorITS);
4380           sub2node->SetVisibility(1);
4381           //fNodes->Add(sub2node);
4382           sub1node->cd();
4383           //
4384           // Place copy #20 of ITS5 directly in I565
4385           //
4386           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-33.3354,"");
4387           sub2node->SetLineColor(kColorITS);
4388           sub2node->SetVisibility(1);
4389           //fNodes->Add(sub2node);
4390           sub1node->cd();
4391           //
4392           // Place copy #21 of ITS5 directly in I565
4393           //
4394           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-37.2454,"");
4395           sub2node->SetLineColor(kColorITS);
4396           sub2node->SetVisibility(1);
4397           //fNodes->Add(sub2node);
4398           sub1node->cd();
4399           //
4400           // Place copy #22 of ITS5 directly in I565
4401           //
4402           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-41.1554,"");
4403           sub2node->SetLineColor(kColorITS);
4404           sub2node->SetVisibility(1);
4405           //fNodes->Add(sub2node);
4406           sub1node->cd();
4407        //fNodes->Add(sub1node);
4408        node->cd();
4409        //
4410        // Place copy #22 of I565 in IT56
4411        //
4412        sub1node = new TNode("I565","I565","I565",26.0036,-28.5246,0.,"rot527");
4413        sub1node->SetLineColor(kColorITS);
4414        sub1node->SetVisibility(0);
4415        sub1node->cd();
4416           //
4417           // Place copy #1 of ITS5 directly in I565
4418           //
4419           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,41.1546,"");
4420           sub2node->SetLineColor(kColorITS);
4421           sub2node->SetVisibility(1);
4422           //fNodes->Add(sub2node);
4423           sub1node->cd();
4424           //
4425           // Place copy #2 of ITS5 directly in I565
4426           //
4427           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,37.2246,"");
4428           sub2node->SetLineColor(kColorITS);
4429           sub2node->SetVisibility(1);
4430           //fNodes->Add(sub2node);
4431           sub1node->cd();
4432           //
4433           // Place copy #3 of ITS5 directly in I565
4434           //
4435           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,33.3146,"");
4436           sub2node->SetLineColor(kColorITS);
4437           sub2node->SetVisibility(1);
4438           //fNodes->Add(sub2node);
4439           sub1node->cd();
4440           //
4441           // Place copy #4 of ITS5 directly in I565
4442           //
4443           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,29.3846,"");
4444           sub2node->SetLineColor(kColorITS);
4445           sub2node->SetVisibility(1);
4446           //fNodes->Add(sub2node);
4447           sub1node->cd();
4448           //
4449           // Place copy #5 of ITS5 directly in I565
4450           //
4451           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,25.4746,"");
4452           sub2node->SetLineColor(kColorITS);
4453           sub2node->SetVisibility(1);
4454           //fNodes->Add(sub2node);
4455           sub1node->cd();
4456           //
4457           // Place copy #6 of ITS5 directly in I565
4458           //
4459           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,21.5446,"");
4460           sub2node->SetLineColor(kColorITS);
4461           sub2node->SetVisibility(1);
4462           //fNodes->Add(sub2node);
4463           sub1node->cd();
4464           //
4465           // Place copy #7 of ITS5 directly in I565
4466           //
4467           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,17.6346,"");
4468           sub2node->SetLineColor(kColorITS);
4469           sub2node->SetVisibility(1);
4470           //fNodes->Add(sub2node);
4471           sub1node->cd();
4472           //
4473           // Place copy #8 of ITS5 directly in I565
4474           //
4475           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,13.7046,"");
4476           sub2node->SetLineColor(kColorITS);
4477           sub2node->SetVisibility(1);
4478           //fNodes->Add(sub2node);
4479           sub1node->cd();
4480           //
4481           // Place copy #9 of ITS5 directly in I565
4482           //
4483           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,9.7946,"");
4484           sub2node->SetLineColor(kColorITS);
4485           sub2node->SetVisibility(1);
4486           //fNodes->Add(sub2node);
4487           sub1node->cd();
4488           //
4489           // Place copy #10 of ITS5 directly in I565
4490           //
4491           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,5.8645,"");
4492           sub2node->SetLineColor(kColorITS);
4493           sub2node->SetVisibility(1);
4494           //fNodes->Add(sub2node);
4495           sub1node->cd();
4496           //
4497           // Place copy #11 of ITS5 directly in I565
4498           //
4499           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,1.9546,"");
4500           sub2node->SetLineColor(kColorITS);
4501           sub2node->SetVisibility(1);
4502           //fNodes->Add(sub2node);
4503           sub1node->cd();
4504           //
4505           // Place copy #12 of ITS5 directly in I565
4506           //
4507           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-1.9754,"");
4508           sub2node->SetLineColor(kColorITS);
4509           sub2node->SetVisibility(1);
4510           //fNodes->Add(sub2node);
4511           sub1node->cd();
4512           //
4513           // Place copy #13 of ITS5 directly in I565
4514           //
4515           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-5.8855,"");
4516           sub2node->SetLineColor(kColorITS);
4517           sub2node->SetVisibility(1);
4518           //fNodes->Add(sub2node);
4519           sub1node->cd();
4520           //
4521           // Place copy #14 of ITS5 directly in I565
4522           //
4523           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-9.8154,"");
4524           sub2node->SetLineColor(kColorITS);
4525           sub2node->SetVisibility(1);
4526           //fNodes->Add(sub2node);
4527           sub1node->cd();
4528           //
4529           // Place copy #15 of ITS5 directly in I565
4530           //
4531           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-13.7254,"");
4532           sub2node->SetLineColor(kColorITS);
4533           sub2node->SetVisibility(1);
4534           //fNodes->Add(sub2node);
4535           sub1node->cd();
4536           //
4537           // Place copy #16 of ITS5 directly in I565
4538           //
4539           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-17.6555,"");
4540           sub2node->SetLineColor(kColorITS);
4541           sub2node->SetVisibility(1);
4542           //fNodes->Add(sub2node);
4543           sub1node->cd();
4544           //
4545           // Place copy #17 of ITS5 directly in I565
4546           //
4547           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-21.5655,"");
4548           sub2node->SetLineColor(kColorITS);
4549           sub2node->SetVisibility(1);
4550           //fNodes->Add(sub2node);
4551           sub1node->cd();
4552           //
4553           // Place copy #18 of ITS5 directly in I565
4554           //
4555           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-25.4954,"");
4556           sub2node->SetLineColor(kColorITS);
4557           sub2node->SetVisibility(1);
4558           //fNodes->Add(sub2node);
4559           sub1node->cd();
4560           //
4561           // Place copy #19 of ITS5 directly in I565
4562           //
4563           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-29.4054,"");
4564           sub2node->SetLineColor(kColorITS);
4565           sub2node->SetVisibility(1);
4566           //fNodes->Add(sub2node);
4567           sub1node->cd();
4568           //
4569           // Place copy #20 of ITS5 directly in I565
4570           //
4571           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-33.3354,"");
4572           sub2node->SetLineColor(kColorITS);
4573           sub2node->SetVisibility(1);
4574           //fNodes->Add(sub2node);
4575           sub1node->cd();
4576           //
4577           // Place copy #21 of ITS5 directly in I565
4578           //
4579           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-37.2454,"");
4580           sub2node->SetLineColor(kColorITS);
4581           sub2node->SetVisibility(1);
4582           //fNodes->Add(sub2node);
4583           sub1node->cd();
4584           //
4585           // Place copy #22 of ITS5 directly in I565
4586           //
4587           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-41.1554,"");
4588           sub2node->SetLineColor(kColorITS);
4589           sub2node->SetVisibility(1);
4590           //fNodes->Add(sub2node);
4591           sub1node->cd();
4592        //fNodes->Add(sub1node);
4593        node->cd();
4594        //
4595        // Place copy #23 of I565 in IT56
4596        //
4597        sub1node = new TNode("I565","I565","I565",30.6798,-23.1683,0.,"rot526");
4598        sub1node->SetLineColor(kColorITS);
4599        sub1node->SetVisibility(0);
4600        sub1node->cd();
4601           //
4602           // Place copy #1 of ITS5 directly in I565
4603           //
4604           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,41.1546,"");
4605           sub2node->SetLineColor(kColorITS);
4606           sub2node->SetVisibility(1);
4607           //fNodes->Add(sub2node);
4608           sub1node->cd();
4609           //
4610           // Place copy #2 of ITS5 directly in I565
4611           //
4612           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,37.2246,"");
4613           sub2node->SetLineColor(kColorITS);
4614           sub2node->SetVisibility(1);
4615           //fNodes->Add(sub2node);
4616           sub1node->cd();
4617           //
4618           // Place copy #3 of ITS5 directly in I565
4619           //
4620           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,33.3146,"");
4621           sub2node->SetLineColor(kColorITS);
4622           sub2node->SetVisibility(1);
4623           //fNodes->Add(sub2node);
4624           sub1node->cd();
4625           //
4626           // Place copy #4 of ITS5 directly in I565
4627           //
4628           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,29.3846,"");
4629           sub2node->SetLineColor(kColorITS);
4630           sub2node->SetVisibility(1);
4631           //fNodes->Add(sub2node);
4632           sub1node->cd();
4633           //
4634           // Place copy #5 of ITS5 directly in I565
4635           //
4636           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,25.4746,"");
4637           sub2node->SetLineColor(kColorITS);
4638           sub2node->SetVisibility(1);
4639           //fNodes->Add(sub2node);
4640           sub1node->cd();
4641           //
4642           // Place copy #6 of ITS5 directly in I565
4643           //
4644           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,21.5446,"");
4645           sub2node->SetLineColor(kColorITS);
4646           sub2node->SetVisibility(1);
4647           //fNodes->Add(sub2node);
4648           sub1node->cd();
4649           //
4650           // Place copy #7 of ITS5 directly in I565
4651           //
4652           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,17.6346,"");
4653           sub2node->SetLineColor(kColorITS);
4654           sub2node->SetVisibility(1);
4655           //fNodes->Add(sub2node);
4656           sub1node->cd();
4657           //
4658           // Place copy #8 of ITS5 directly in I565
4659           //
4660           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,13.7046,"");
4661           sub2node->SetLineColor(kColorITS);
4662           sub2node->SetVisibility(1);
4663           //fNodes->Add(sub2node);
4664           sub1node->cd();
4665           //
4666           // Place copy #9 of ITS5 directly in I565
4667           //
4668           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,9.7946,"");
4669           sub2node->SetLineColor(kColorITS);
4670           sub2node->SetVisibility(1);
4671           //fNodes->Add(sub2node);
4672           sub1node->cd();
4673           //
4674           // Place copy #10 of ITS5 directly in I565
4675           //
4676           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,5.8645,"");
4677           sub2node->SetLineColor(kColorITS);
4678           sub2node->SetVisibility(1);
4679           //fNodes->Add(sub2node);
4680           sub1node->cd();
4681           //
4682           // Place copy #11 of ITS5 directly in I565
4683           //
4684           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,1.9546,"");
4685           sub2node->SetLineColor(kColorITS);
4686           sub2node->SetVisibility(1);
4687           //fNodes->Add(sub2node);
4688           sub1node->cd();
4689           //
4690           // Place copy #12 of ITS5 directly in I565
4691           //
4692           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-1.9754,"");
4693           sub2node->SetLineColor(kColorITS);
4694           sub2node->SetVisibility(1);
4695           //fNodes->Add(sub2node);
4696           sub1node->cd();
4697           //
4698           // Place copy #13 of ITS5 directly in I565
4699           //
4700           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-5.8855,"");
4701           sub2node->SetLineColor(kColorITS);
4702           sub2node->SetVisibility(1);
4703           //fNodes->Add(sub2node);
4704           sub1node->cd();
4705           //
4706           // Place copy #14 of ITS5 directly in I565
4707           //
4708           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-9.8154,"");
4709           sub2node->SetLineColor(kColorITS);
4710           sub2node->SetVisibility(1);
4711           //fNodes->Add(sub2node);
4712           sub1node->cd();
4713           //
4714           // Place copy #15 of ITS5 directly in I565
4715           //
4716           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-13.7254,"");
4717           sub2node->SetLineColor(kColorITS);
4718           sub2node->SetVisibility(1);
4719           //fNodes->Add(sub2node);
4720           sub1node->cd();
4721           //
4722           // Place copy #16 of ITS5 directly in I565
4723           //
4724           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-17.6555,"");
4725           sub2node->SetLineColor(kColorITS);
4726           sub2node->SetVisibility(1);
4727           //fNodes->Add(sub2node);
4728           sub1node->cd();
4729           //
4730           // Place copy #17 of ITS5 directly in I565
4731           //
4732           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-21.5655,"");
4733           sub2node->SetLineColor(kColorITS);
4734           sub2node->SetVisibility(1);
4735           //fNodes->Add(sub2node);
4736           sub1node->cd();
4737           //
4738           // Place copy #18 of ITS5 directly in I565
4739           //
4740           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-25.4954,"");
4741           sub2node->SetLineColor(kColorITS);
4742           sub2node->SetVisibility(1);
4743           //fNodes->Add(sub2node);
4744           sub1node->cd();
4745           //
4746           // Place copy #19 of ITS5 directly in I565
4747           //
4748           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-29.4054,"");
4749           sub2node->SetLineColor(kColorITS);
4750           sub2node->SetVisibility(1);
4751           //fNodes->Add(sub2node);
4752           sub1node->cd();
4753           //
4754           // Place copy #20 of ITS5 directly in I565
4755           //
4756           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-33.3354,"");
4757           sub2node->SetLineColor(kColorITS);
4758           sub2node->SetVisibility(1);
4759           //fNodes->Add(sub2node);
4760           sub1node->cd();
4761           //
4762           // Place copy #21 of ITS5 directly in I565
4763           //
4764           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-37.2454,"");
4765           sub2node->SetLineColor(kColorITS);
4766           sub2node->SetVisibility(1);
4767           //fNodes->Add(sub2node);
4768           sub1node->cd();
4769           //
4770           // Place copy #22 of ITS5 directly in I565
4771           //
4772           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-41.1554,"");
4773           sub2node->SetLineColor(kColorITS);
4774           sub2node->SetVisibility(1);
4775           //fNodes->Add(sub2node);
4776           sub1node->cd();
4777        //fNodes->Add(sub1node);
4778        node->cd();
4779        //
4780        // Place copy #24 of I565 in IT56
4781        //
4782        sub1node = new TNode("I565","I565","I565",34.5519,-17.2048,0.,"rot525");
4783        sub1node->SetLineColor(kColorITS);
4784        sub1node->SetVisibility(0);
4785        sub1node->cd();
4786           //
4787           // Place copy #1 of ITS5 directly in I565
4788           //
4789           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,41.1546,"");
4790           sub2node->SetLineColor(kColorITS);
4791           sub2node->SetVisibility(1);
4792           //fNodes->Add(sub2node);
4793           sub1node->cd();
4794           //
4795           // Place copy #2 of ITS5 directly in I565
4796           //
4797           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,37.2246,"");
4798           sub2node->SetLineColor(kColorITS);
4799           sub2node->SetVisibility(1);
4800           //fNodes->Add(sub2node);
4801           sub1node->cd();
4802           //
4803           // Place copy #3 of ITS5 directly in I565
4804           //
4805           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,33.3146,"");
4806           sub2node->SetLineColor(kColorITS);
4807           sub2node->SetVisibility(1);
4808           //fNodes->Add(sub2node);
4809           sub1node->cd();
4810           //
4811           // Place copy #4 of ITS5 directly in I565
4812           //
4813           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,29.3846,"");
4814           sub2node->SetLineColor(kColorITS);
4815           sub2node->SetVisibility(1);
4816           //fNodes->Add(sub2node);
4817           sub1node->cd();
4818           //
4819           // Place copy #5 of ITS5 directly in I565
4820           //
4821           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,25.4746,"");
4822           sub2node->SetLineColor(kColorITS);
4823           sub2node->SetVisibility(1);
4824           //fNodes->Add(sub2node);
4825           sub1node->cd();
4826           //
4827           // Place copy #6 of ITS5 directly in I565
4828           //
4829           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,21.5446,"");
4830           sub2node->SetLineColor(kColorITS);
4831           sub2node->SetVisibility(1);
4832           //fNodes->Add(sub2node);
4833           sub1node->cd();
4834           //
4835           // Place copy #7 of ITS5 directly in I565
4836           //
4837           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,17.6346,"");
4838           sub2node->SetLineColor(kColorITS);
4839           sub2node->SetVisibility(1);
4840           //fNodes->Add(sub2node);
4841           sub1node->cd();
4842           //
4843           // Place copy #8 of ITS5 directly in I565
4844           //
4845           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,13.7046,"");
4846           sub2node->SetLineColor(kColorITS);
4847           sub2node->SetVisibility(1);
4848           //fNodes->Add(sub2node);
4849           sub1node->cd();
4850           //
4851           // Place copy #9 of ITS5 directly in I565
4852           //
4853           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,9.7946,"");
4854           sub2node->SetLineColor(kColorITS);
4855           sub2node->SetVisibility(1);
4856           //fNodes->Add(sub2node);
4857           sub1node->cd();
4858           //
4859           // Place copy #10 of ITS5 directly in I565
4860           //
4861           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,5.8645,"");
4862           sub2node->SetLineColor(kColorITS);
4863           sub2node->SetVisibility(1);
4864           //fNodes->Add(sub2node);
4865           sub1node->cd();
4866           //
4867           // Place copy #11 of ITS5 directly in I565
4868           //
4869           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,1.9546,"");
4870           sub2node->SetLineColor(kColorITS);
4871           sub2node->SetVisibility(1);
4872           //fNodes->Add(sub2node);
4873           sub1node->cd();
4874           //
4875           // Place copy #12 of ITS5 directly in I565
4876           //
4877           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-1.9754,"");
4878           sub2node->SetLineColor(kColorITS);
4879           sub2node->SetVisibility(1);
4880           //fNodes->Add(sub2node);
4881           sub1node->cd();
4882           //
4883           // Place copy #13 of ITS5 directly in I565
4884           //
4885           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-5.8855,"");
4886           sub2node->SetLineColor(kColorITS);
4887           sub2node->SetVisibility(1);
4888           //fNodes->Add(sub2node);
4889           sub1node->cd();
4890           //
4891           // Place copy #14 of ITS5 directly in I565
4892           //
4893           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-9.8154,"");
4894           sub2node->SetLineColor(kColorITS);
4895           sub2node->SetVisibility(1);
4896           //fNodes->Add(sub2node);
4897           sub1node->cd();
4898           //
4899           // Place copy #15 of ITS5 directly in I565
4900           //
4901           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-13.7254,"");
4902           sub2node->SetLineColor(kColorITS);
4903           sub2node->SetVisibility(1);
4904           //fNodes->Add(sub2node);
4905           sub1node->cd();
4906           //
4907           // Place copy #16 of ITS5 directly in I565
4908           //
4909           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-17.6555,"");
4910           sub2node->SetLineColor(kColorITS);
4911           sub2node->SetVisibility(1);
4912           //fNodes->Add(sub2node);
4913           sub1node->cd();
4914           //
4915           // Place copy #17 of ITS5 directly in I565
4916           //
4917           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-21.5655,"");
4918           sub2node->SetLineColor(kColorITS);
4919           sub2node->SetVisibility(1);
4920           //fNodes->Add(sub2node);
4921           sub1node->cd();
4922           //
4923           // Place copy #18 of ITS5 directly in I565
4924           //
4925           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-25.4954,"");
4926           sub2node->SetLineColor(kColorITS);
4927           sub2node->SetVisibility(1);
4928           //fNodes->Add(sub2node);
4929           sub1node->cd();
4930           //
4931           // Place copy #19 of ITS5 directly in I565
4932           //
4933           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-29.4054,"");
4934           sub2node->SetLineColor(kColorITS);
4935           sub2node->SetVisibility(1);
4936           //fNodes->Add(sub2node);
4937           sub1node->cd();
4938           //
4939           // Place copy #20 of ITS5 directly in I565
4940           //
4941           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-33.3354,"");
4942           sub2node->SetLineColor(kColorITS);
4943           sub2node->SetVisibility(1);
4944           //fNodes->Add(sub2node);
4945           sub1node->cd();
4946           //
4947           // Place copy #21 of ITS5 directly in I565
4948           //
4949           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-37.2454,"");
4950           sub2node->SetLineColor(kColorITS);
4951           sub2node->SetVisibility(1);
4952           //fNodes->Add(sub2node);
4953           sub1node->cd();
4954           //
4955           // Place copy #22 of ITS5 directly in I565
4956           //
4957           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-41.1554,"");
4958           sub2node->SetLineColor(kColorITS);
4959           sub2node->SetVisibility(1);
4960           //fNodes->Add(sub2node);
4961           sub1node->cd();
4962        //fNodes->Add(sub1node);
4963        node->cd();
4964        //
4965        // Place copy #25 of I565 in IT56
4966        //
4967        sub1node = new TNode("I565","I565","I565",36.9774,-10.521,0.,"rot524");
4968        sub1node->SetLineColor(kColorITS);
4969        sub1node->SetVisibility(0);
4970        sub1node->cd();
4971           //
4972           // Place copy #1 of ITS5 directly in I565
4973           //
4974           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,41.1546,"");
4975           sub2node->SetLineColor(kColorITS);
4976           sub2node->SetVisibility(1);
4977           //fNodes->Add(sub2node);
4978           sub1node->cd();
4979           //
4980           // Place copy #2 of ITS5 directly in I565
4981           //
4982           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,37.2246,"");
4983           sub2node->SetLineColor(kColorITS);
4984           sub2node->SetVisibility(1);
4985           //fNodes->Add(sub2node);
4986           sub1node->cd();
4987           //
4988           // Place copy #3 of ITS5 directly in I565
4989           //
4990           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,33.3146,"");
4991           sub2node->SetLineColor(kColorITS);
4992           sub2node->SetVisibility(1);
4993           //fNodes->Add(sub2node);
4994           sub1node->cd();
4995           //
4996           // Place copy #4 of ITS5 directly in I565
4997           //
4998           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,29.3846,"");
4999           sub2node->SetLineColor(kColorITS);
5000           sub2node->SetVisibility(1);
5001           //fNodes->Add(sub2node);
5002           sub1node->cd();
5003           //
5004           // Place copy #5 of ITS5 directly in I565
5005           //
5006           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,25.4746,"");
5007           sub2node->SetLineColor(kColorITS);
5008           sub2node->SetVisibility(1);
5009           //fNodes->Add(sub2node);
5010           sub1node->cd();
5011           //
5012           // Place copy #6 of ITS5 directly in I565
5013           //
5014           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,21.5446,"");
5015           sub2node->SetLineColor(kColorITS);
5016           sub2node->SetVisibility(1);
5017           //fNodes->Add(sub2node);
5018           sub1node->cd();
5019           //
5020           // Place copy #7 of ITS5 directly in I565
5021           //
5022           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,17.6346,"");
5023           sub2node->SetLineColor(kColorITS);
5024           sub2node->SetVisibility(1);
5025           //fNodes->Add(sub2node);
5026           sub1node->cd();
5027           //
5028           // Place copy #8 of ITS5 directly in I565
5029           //
5030           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,13.7046,"");
5031           sub2node->SetLineColor(kColorITS);
5032           sub2node->SetVisibility(1);
5033           //fNodes->Add(sub2node);
5034           sub1node->cd();
5035           //
5036           // Place copy #9 of ITS5 directly in I565
5037           //
5038           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,9.7946,"");
5039           sub2node->SetLineColor(kColorITS);
5040           sub2node->SetVisibility(1);
5041           //fNodes->Add(sub2node);
5042           sub1node->cd();
5043           //
5044           // Place copy #10 of ITS5 directly in I565
5045           //
5046           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,5.8645,"");
5047           sub2node->SetLineColor(kColorITS);
5048           sub2node->SetVisibility(1);
5049           //fNodes->Add(sub2node);
5050           sub1node->cd();
5051           //
5052           // Place copy #11 of ITS5 directly in I565
5053           //
5054           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,1.9546,"");
5055           sub2node->SetLineColor(kColorITS);
5056           sub2node->SetVisibility(1);
5057           //fNodes->Add(sub2node);
5058           sub1node->cd();
5059           //
5060           // Place copy #12 of ITS5 directly in I565
5061           //
5062           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-1.9754,"");
5063           sub2node->SetLineColor(kColorITS);
5064           sub2node->SetVisibility(1);
5065           //fNodes->Add(sub2node);
5066           sub1node->cd();
5067           //
5068           // Place copy #13 of ITS5 directly in I565
5069           //
5070           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-5.8855,"");
5071           sub2node->SetLineColor(kColorITS);
5072           sub2node->SetVisibility(1);
5073           //fNodes->Add(sub2node);
5074           sub1node->cd();
5075           //
5076           // Place copy #14 of ITS5 directly in I565
5077           //
5078           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-9.8154,"");
5079           sub2node->SetLineColor(kColorITS);
5080           sub2node->SetVisibility(1);
5081           //fNodes->Add(sub2node);
5082           sub1node->cd();
5083           //
5084           // Place copy #15 of ITS5 directly in I565
5085           //
5086           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-13.7254,"");
5087           sub2node->SetLineColor(kColorITS);
5088           sub2node->SetVisibility(1);
5089           //fNodes->Add(sub2node);
5090           sub1node->cd();
5091           //
5092           // Place copy #16 of ITS5 directly in I565
5093           //
5094           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-17.6555,"");
5095           sub2node->SetLineColor(kColorITS);
5096           sub2node->SetVisibility(1);
5097           //fNodes->Add(sub2node);
5098           sub1node->cd();
5099           //
5100           // Place copy #17 of ITS5 directly in I565
5101           //
5102           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-21.5655,"");
5103           sub2node->SetLineColor(kColorITS);
5104           sub2node->SetVisibility(1);
5105           //fNodes->Add(sub2node);
5106           sub1node->cd();
5107           //
5108           // Place copy #18 of ITS5 directly in I565
5109           //
5110           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-25.4954,"");
5111           sub2node->SetLineColor(kColorITS);
5112           sub2node->SetVisibility(1);
5113           //fNodes->Add(sub2node);
5114           sub1node->cd();
5115           //
5116           // Place copy #19 of ITS5 directly in I565
5117           //
5118           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-29.4054,"");
5119           sub2node->SetLineColor(kColorITS);
5120           sub2node->SetVisibility(1);
5121           //fNodes->Add(sub2node);
5122           sub1node->cd();
5123           //
5124           // Place copy #20 of ITS5 directly in I565
5125           //
5126           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-33.3354,"");
5127           sub2node->SetLineColor(kColorITS);
5128           sub2node->SetVisibility(1);
5129           //fNodes->Add(sub2node);
5130           sub1node->cd();
5131           //
5132           // Place copy #21 of ITS5 directly in I565
5133           //
5134           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-37.2454,"");
5135           sub2node->SetLineColor(kColorITS);
5136           sub2node->SetVisibility(1);
5137           //fNodes->Add(sub2node);
5138           sub1node->cd();
5139           //
5140           // Place copy #22 of ITS5 directly in I565
5141           //
5142           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-41.1554,"");
5143           sub2node->SetLineColor(kColorITS);
5144           sub2node->SetVisibility(1);
5145           //fNodes->Add(sub2node);
5146           sub1node->cd();
5147        //fNodes->Add(sub1node);
5148        node->cd();
5149        //
5150        // Place copy #26 of I565 in IT56
5151        //
5152        sub1node = new TNode("I565","I565","I565",38.4338,-3.5614,0.,"rot523");
5153        sub1node->SetLineColor(kColorITS);
5154        sub1node->SetVisibility(0);
5155        sub1node->cd();
5156           //
5157           // Place copy #1 of ITS5 directly in I565
5158           //
5159           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,41.1546,"");
5160           sub2node->SetLineColor(kColorITS);
5161           sub2node->SetVisibility(1);
5162           //fNodes->Add(sub2node);
5163           sub1node->cd();
5164           //
5165           // Place copy #2 of ITS5 directly in I565
5166           //
5167           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,37.2246,"");
5168           sub2node->SetLineColor(kColorITS);
5169           sub2node->SetVisibility(1);
5170           //fNodes->Add(sub2node);
5171           sub1node->cd();
5172           //
5173           // Place copy #3 of ITS5 directly in I565
5174           //
5175           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,33.3146,"");
5176           sub2node->SetLineColor(kColorITS);
5177           sub2node->SetVisibility(1);
5178           //fNodes->Add(sub2node);
5179           sub1node->cd();
5180           //
5181           // Place copy #4 of ITS5 directly in I565
5182           //
5183           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,29.3846,"");
5184           sub2node->SetLineColor(kColorITS);
5185           sub2node->SetVisibility(1);
5186           //fNodes->Add(sub2node);
5187           sub1node->cd();
5188           //
5189           // Place copy #5 of ITS5 directly in I565
5190           //
5191           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,25.4746,"");
5192           sub2node->SetLineColor(kColorITS);
5193           sub2node->SetVisibility(1);
5194           //fNodes->Add(sub2node);
5195           sub1node->cd();
5196           //
5197           // Place copy #6 of ITS5 directly in I565
5198           //
5199           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,21.5446,"");
5200           sub2node->SetLineColor(kColorITS);
5201           sub2node->SetVisibility(1);
5202           //fNodes->Add(sub2node);
5203           sub1node->cd();
5204           //
5205           // Place copy #7 of ITS5 directly in I565
5206           //
5207           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,17.6346,"");
5208           sub2node->SetLineColor(kColorITS);
5209           sub2node->SetVisibility(1);
5210           //fNodes->Add(sub2node);
5211           sub1node->cd();
5212           //
5213           // Place copy #8 of ITS5 directly in I565
5214           //
5215           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,13.7046,"");
5216           sub2node->SetLineColor(kColorITS);
5217           sub2node->SetVisibility(1);
5218           //fNodes->Add(sub2node);
5219           sub1node->cd();
5220           //
5221           // Place copy #9 of ITS5 directly in I565
5222           //
5223           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,9.7946,"");
5224           sub2node->SetLineColor(kColorITS);
5225           sub2node->SetVisibility(1);
5226           //fNodes->Add(sub2node);
5227           sub1node->cd();
5228           //
5229           // Place copy #10 of ITS5 directly in I565
5230           //
5231           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,5.8645,"");
5232           sub2node->SetLineColor(kColorITS);
5233           sub2node->SetVisibility(1);
5234           //fNodes->Add(sub2node);
5235           sub1node->cd();
5236           //
5237           // Place copy #11 of ITS5 directly in I565
5238           //
5239           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,1.9546,"");
5240           sub2node->SetLineColor(kColorITS);
5241           sub2node->SetVisibility(1);
5242           //fNodes->Add(sub2node);
5243           sub1node->cd();
5244           //
5245           // Place copy #12 of ITS5 directly in I565
5246           //
5247           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-1.9754,"");
5248           sub2node->SetLineColor(kColorITS);
5249           sub2node->SetVisibility(1);
5250           //fNodes->Add(sub2node);
5251           sub1node->cd();
5252           //
5253           // Place copy #13 of ITS5 directly in I565
5254           //
5255           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-5.8855,"");
5256           sub2node->SetLineColor(kColorITS);
5257           sub2node->SetVisibility(1);
5258           //fNodes->Add(sub2node);
5259           sub1node->cd();
5260           //
5261           // Place copy #14 of ITS5 directly in I565
5262           //
5263           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-9.8154,"");
5264           sub2node->SetLineColor(kColorITS);
5265           sub2node->SetVisibility(1);
5266           //fNodes->Add(sub2node);
5267           sub1node->cd();
5268           //
5269           // Place copy #15 of ITS5 directly in I565
5270           //
5271           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-13.7254,"");
5272           sub2node->SetLineColor(kColorITS);
5273           sub2node->SetVisibility(1);
5274           //fNodes->Add(sub2node);
5275           sub1node->cd();
5276           //
5277           // Place copy #16 of ITS5 directly in I565
5278           //
5279           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-17.6555,"");
5280           sub2node->SetLineColor(kColorITS);
5281           sub2node->SetVisibility(1);
5282           //fNodes->Add(sub2node);
5283           sub1node->cd();
5284           //
5285           // Place copy #17 of ITS5 directly in I565
5286           //
5287           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-21.5655,"");
5288           sub2node->SetLineColor(kColorITS);
5289           sub2node->SetVisibility(1);
5290           //fNodes->Add(sub2node);
5291           sub1node->cd();
5292           //
5293           // Place copy #18 of ITS5 directly in I565
5294           //
5295           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-25.4954,"");
5296           sub2node->SetLineColor(kColorITS);
5297           sub2node->SetVisibility(1);
5298           //fNodes->Add(sub2node);
5299           sub1node->cd();
5300           //
5301           // Place copy #19 of ITS5 directly in I565
5302           //
5303           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-29.4054,"");
5304           sub2node->SetLineColor(kColorITS);
5305           sub2node->SetVisibility(1);
5306           //fNodes->Add(sub2node);
5307           sub1node->cd();
5308           //
5309           // Place copy #20 of ITS5 directly in I565
5310           //
5311           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-33.3354,"");
5312           sub2node->SetLineColor(kColorITS);
5313           sub2node->SetVisibility(1);
5314           //fNodes->Add(sub2node);
5315           sub1node->cd();
5316           //
5317           // Place copy #21 of ITS5 directly in I565
5318           //
5319           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-37.2454,"");
5320           sub2node->SetLineColor(kColorITS);
5321           sub2node->SetVisibility(1);
5322           //fNodes->Add(sub2node);
5323           sub1node->cd();
5324           //
5325           // Place copy #22 of ITS5 directly in I565
5326           //
5327           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-41.1554,"");
5328           sub2node->SetLineColor(kColorITS);
5329           sub2node->SetVisibility(1);
5330           //fNodes->Add(sub2node);
5331           sub1node->cd();
5332        //fNodes->Add(sub1node);
5333        node->cd();
5334        //
5335        // Place copy #27 of I565 in IT56
5336        //
5337        sub1node = new TNode("I565","I565","I565",38.281,3.5472,0.,"rot522");
5338        sub1node->SetLineColor(kColorITS);
5339        sub1node->SetVisibility(0);
5340        sub1node->cd();
5341           //
5342           // Place copy #1 of ITS5 directly in I565
5343           //
5344           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,41.1546,"");
5345           sub2node->SetLineColor(kColorITS);
5346           sub2node->SetVisibility(1);
5347           //fNodes->Add(sub2node);
5348           sub1node->cd();
5349           //
5350           // Place copy #2 of ITS5 directly in I565
5351           //
5352           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,37.2246,"");
5353           sub2node->SetLineColor(kColorITS);
5354           sub2node->SetVisibility(1);
5355           //fNodes->Add(sub2node);
5356           sub1node->cd();
5357           //
5358           // Place copy #3 of ITS5 directly in I565
5359           //
5360           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,33.3146,"");
5361           sub2node->SetLineColor(kColorITS);
5362           sub2node->SetVisibility(1);
5363           //fNodes->Add(sub2node);
5364           sub1node->cd();
5365           //
5366           // Place copy #4 of ITS5 directly in I565
5367           //
5368           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,29.3846,"");
5369           sub2node->SetLineColor(kColorITS);
5370           sub2node->SetVisibility(1);
5371           //fNodes->Add(sub2node);
5372           sub1node->cd();
5373           //
5374           // Place copy #5 of ITS5 directly in I565
5375           //
5376           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,25.4746,"");
5377           sub2node->SetLineColor(kColorITS);
5378           sub2node->SetVisibility(1);
5379           //fNodes->Add(sub2node);
5380           sub1node->cd();
5381           //
5382           // Place copy #6 of ITS5 directly in I565
5383           //
5384           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,21.5446,"");
5385           sub2node->SetLineColor(kColorITS);
5386           sub2node->SetVisibility(1);
5387           //fNodes->Add(sub2node);
5388           sub1node->cd();
5389           //
5390           // Place copy #7 of ITS5 directly in I565
5391           //
5392           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,17.6346,"");
5393           sub2node->SetLineColor(kColorITS);
5394           sub2node->SetVisibility(1);
5395           //fNodes->Add(sub2node);
5396           sub1node->cd();
5397           //
5398           // Place copy #8 of ITS5 directly in I565
5399           //
5400           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,13.7046,"");
5401           sub2node->SetLineColor(kColorITS);
5402           sub2node->SetVisibility(1);
5403           //fNodes->Add(sub2node);
5404           sub1node->cd();
5405           //
5406           // Place copy #9 of ITS5 directly in I565
5407           //
5408           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,9.7946,"");
5409           sub2node->SetLineColor(kColorITS);
5410           sub2node->SetVisibility(1);
5411           //fNodes->Add(sub2node);
5412           sub1node->cd();
5413           //
5414           // Place copy #10 of ITS5 directly in I565
5415           //
5416           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,5.8645,"");
5417           sub2node->SetLineColor(kColorITS);
5418           sub2node->SetVisibility(1);
5419           //fNodes->Add(sub2node);
5420           sub1node->cd();
5421           //
5422           // Place copy #11 of ITS5 directly in I565
5423           //
5424           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,1.9546,"");
5425           sub2node->SetLineColor(kColorITS);
5426           sub2node->SetVisibility(1);
5427           //fNodes->Add(sub2node);
5428           sub1node->cd();
5429           //
5430           // Place copy #12 of ITS5 directly in I565
5431           //
5432           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-1.9754,"");
5433           sub2node->SetLineColor(kColorITS);
5434           sub2node->SetVisibility(1);
5435           //fNodes->Add(sub2node);
5436           sub1node->cd();
5437           //
5438           // Place copy #13 of ITS5 directly in I565
5439           //
5440           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-5.8855,"");
5441           sub2node->SetLineColor(kColorITS);
5442           sub2node->SetVisibility(1);
5443           //fNodes->Add(sub2node);
5444           sub1node->cd();
5445           //
5446           // Place copy #14 of ITS5 directly in I565
5447           //
5448           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-9.8154,"");
5449           sub2node->SetLineColor(kColorITS);
5450           sub2node->SetVisibility(1);
5451           //fNodes->Add(sub2node);
5452           sub1node->cd();
5453           //
5454           // Place copy #15 of ITS5 directly in I565
5455           //
5456           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-13.7254,"");
5457           sub2node->SetLineColor(kColorITS);
5458           sub2node->SetVisibility(1);
5459           //fNodes->Add(sub2node);
5460           sub1node->cd();
5461           //
5462           // Place copy #16 of ITS5 directly in I565
5463           //
5464           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-17.6555,"");
5465           sub2node->SetLineColor(kColorITS);
5466           sub2node->SetVisibility(1);
5467           //fNodes->Add(sub2node);
5468           sub1node->cd();
5469           //
5470           // Place copy #17 of ITS5 directly in I565
5471           //
5472           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-21.5655,"");
5473           sub2node->SetLineColor(kColorITS);
5474           sub2node->SetVisibility(1);
5475           //fNodes->Add(sub2node);
5476           sub1node->cd();
5477           //
5478           // Place copy #18 of ITS5 directly in I565
5479           //
5480           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-25.4954,"");
5481           sub2node->SetLineColor(kColorITS);
5482           sub2node->SetVisibility(1);
5483           //fNodes->Add(sub2node);
5484           sub1node->cd();
5485           //
5486           // Place copy #19 of ITS5 directly in I565
5487           //
5488           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-29.4054,"");
5489           sub2node->SetLineColor(kColorITS);
5490           sub2node->SetVisibility(1);
5491           //fNodes->Add(sub2node);
5492           sub1node->cd();
5493           //
5494           // Place copy #20 of ITS5 directly in I565
5495           //
5496           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-33.3354,"");
5497           sub2node->SetLineColor(kColorITS);
5498           sub2node->SetVisibility(1);
5499           //fNodes->Add(sub2node);
5500           sub1node->cd();
5501           //
5502           // Place copy #21 of ITS5 directly in I565
5503           //
5504           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-37.2454,"");
5505           sub2node->SetLineColor(kColorITS);
5506           sub2node->SetVisibility(1);
5507           //fNodes->Add(sub2node);
5508           sub1node->cd();
5509           //
5510           // Place copy #22 of ITS5 directly in I565
5511           //
5512           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-41.1554,"");
5513           sub2node->SetLineColor(kColorITS);
5514           sub2node->SetVisibility(1);
5515           //fNodes->Add(sub2node);
5516           sub1node->cd();
5517        //fNodes->Add(sub1node);
5518        node->cd();
5519        //
5520        // Place copy #28 of I565 in IT56
5521        //
5522        sub1node = new TNode("I565","I565","I565",37.125,10.5629,0.,"rot521");
5523        sub1node->SetLineColor(kColorITS);
5524        sub1node->SetVisibility(0);
5525        sub1node->cd();
5526           //
5527           // Place copy #1 of ITS5 directly in I565
5528           //
5529           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,41.1546,"");
5530           sub2node->SetLineColor(kColorITS);
5531           sub2node->SetVisibility(1);
5532           //fNodes->Add(sub2node);
5533           sub1node->cd();
5534           //
5535           // Place copy #2 of ITS5 directly in I565
5536           //
5537           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,37.2246,"");
5538           sub2node->SetLineColor(kColorITS);
5539           sub2node->SetVisibility(1);
5540           //fNodes->Add(sub2node);
5541           sub1node->cd();
5542           //
5543           // Place copy #3 of ITS5 directly in I565
5544           //
5545           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,33.3146,"");
5546           sub2node->SetLineColor(kColorITS);
5547           sub2node->SetVisibility(1);
5548           //fNodes->Add(sub2node);
5549           sub1node->cd();
5550           //
5551           // Place copy #4 of ITS5 directly in I565
5552           //
5553           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,29.3846,"");
5554           sub2node->SetLineColor(kColorITS);
5555           sub2node->SetVisibility(1);
5556           //fNodes->Add(sub2node);
5557           sub1node->cd();
5558           //
5559           // Place copy #5 of ITS5 directly in I565
5560           //
5561           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,25.4746,"");
5562           sub2node->SetLineColor(kColorITS);
5563           sub2node->SetVisibility(1);
5564           //fNodes->Add(sub2node);
5565           sub1node->cd();
5566           //
5567           // Place copy #6 of ITS5 directly in I565
5568           //
5569           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,21.5446,"");
5570           sub2node->SetLineColor(kColorITS);
5571           sub2node->SetVisibility(1);
5572           //fNodes->Add(sub2node);
5573           sub1node->cd();
5574           //
5575           // Place copy #7 of ITS5 directly in I565
5576           //
5577           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,17.6346,"");
5578           sub2node->SetLineColor(kColorITS);
5579           sub2node->SetVisibility(1);
5580           //fNodes->Add(sub2node);
5581           sub1node->cd();
5582           //
5583           // Place copy #8 of ITS5 directly in I565
5584           //
5585           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,13.7046,"");
5586           sub2node->SetLineColor(kColorITS);
5587           sub2node->SetVisibility(1);
5588           //fNodes->Add(sub2node);
5589           sub1node->cd();
5590           //
5591           // Place copy #9 of ITS5 directly in I565
5592           //
5593           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,9.7946,"");
5594           sub2node->SetLineColor(kColorITS);
5595           sub2node->SetVisibility(1);
5596           //fNodes->Add(sub2node);
5597           sub1node->cd();
5598           //
5599           // Place copy #10 of ITS5 directly in I565
5600           //
5601           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,5.8645,"");
5602           sub2node->SetLineColor(kColorITS);
5603           sub2node->SetVisibility(1);
5604           //fNodes->Add(sub2node);
5605           sub1node->cd();
5606           //
5607           // Place copy #11 of ITS5 directly in I565
5608           //
5609           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,1.9546,"");
5610           sub2node->SetLineColor(kColorITS);
5611           sub2node->SetVisibility(1);
5612           //fNodes->Add(sub2node);
5613           sub1node->cd();
5614           //
5615           // Place copy #12 of ITS5 directly in I565
5616           //
5617           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-1.9754,"");
5618           sub2node->SetLineColor(kColorITS);
5619           sub2node->SetVisibility(1);
5620           //fNodes->Add(sub2node);
5621           sub1node->cd();
5622           //
5623           // Place copy #13 of ITS5 directly in I565
5624           //
5625           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-5.8855,"");
5626           sub2node->SetLineColor(kColorITS);
5627           sub2node->SetVisibility(1);
5628           //fNodes->Add(sub2node);
5629           sub1node->cd();
5630           //
5631           // Place copy #14 of ITS5 directly in I565
5632           //
5633           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-9.8154,"");
5634           sub2node->SetLineColor(kColorITS);
5635           sub2node->SetVisibility(1);
5636           //fNodes->Add(sub2node);
5637           sub1node->cd();
5638           //
5639           // Place copy #15 of ITS5 directly in I565
5640           //
5641           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-13.7254,"");
5642           sub2node->SetLineColor(kColorITS);
5643           sub2node->SetVisibility(1);
5644           //fNodes->Add(sub2node);
5645           sub1node->cd();
5646           //
5647           // Place copy #16 of ITS5 directly in I565
5648           //
5649           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-17.6555,"");
5650           sub2node->SetLineColor(kColorITS);
5651           sub2node->SetVisibility(1);
5652           //fNodes->Add(sub2node);
5653           sub1node->cd();
5654           //
5655           // Place copy #17 of ITS5 directly in I565
5656           //
5657           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-21.5655,"");
5658           sub2node->SetLineColor(kColorITS);
5659           sub2node->SetVisibility(1);
5660           //fNodes->Add(sub2node);
5661           sub1node->cd();
5662           //
5663           // Place copy #18 of ITS5 directly in I565
5664           //
5665           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-25.4954,"");
5666           sub2node->SetLineColor(kColorITS);
5667           sub2node->SetVisibility(1);
5668           //fNodes->Add(sub2node);
5669           sub1node->cd();
5670           //
5671           // Place copy #19 of ITS5 directly in I565
5672           //
5673           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-29.4054,"");
5674           sub2node->SetLineColor(kColorITS);
5675           sub2node->SetVisibility(1);
5676           //fNodes->Add(sub2node);
5677           sub1node->cd();
5678           //
5679           // Place copy #20 of ITS5 directly in I565
5680           //
5681           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-33.3354,"");
5682           sub2node->SetLineColor(kColorITS);
5683           sub2node->SetVisibility(1);
5684           //fNodes->Add(sub2node);
5685           sub1node->cd();
5686           //
5687           // Place copy #21 of ITS5 directly in I565
5688           //
5689           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-37.2454,"");
5690           sub2node->SetLineColor(kColorITS);
5691           sub2node->SetVisibility(1);
5692           //fNodes->Add(sub2node);
5693           sub1node->cd();
5694           //
5695           // Place copy #22 of ITS5 directly in I565
5696           //
5697           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-41.1554,"");
5698           sub2node->SetLineColor(kColorITS);
5699           sub2node->SetVisibility(1);
5700           //fNodes->Add(sub2node);
5701           sub1node->cd();
5702        //fNodes->Add(sub1node);
5703        node->cd();
5704        //
5705        // Place copy #29 of I565 in IT56
5706        //
5707        sub1node = new TNode("I565","I565","I565",34.4146,17.1364,0.,"rot520");
5708        sub1node->SetLineColor(kColorITS);
5709        sub1node->SetVisibility(0);
5710        sub1node->cd();
5711           //
5712           // Place copy #1 of ITS5 directly in I565
5713           //
5714           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,41.1546,"");
5715           sub2node->SetLineColor(kColorITS);
5716           sub2node->SetVisibility(1);
5717           //fNodes->Add(sub2node);
5718           sub1node->cd();
5719           //
5720           // Place copy #2 of ITS5 directly in I565
5721           //
5722           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,37.2246,"");
5723           sub2node->SetLineColor(kColorITS);
5724           sub2node->SetVisibility(1);
5725           //fNodes->Add(sub2node);
5726           sub1node->cd();
5727           //
5728           // Place copy #3 of ITS5 directly in I565
5729           //
5730           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,33.3146,"");
5731           sub2node->SetLineColor(kColorITS);
5732           sub2node->SetVisibility(1);
5733           //fNodes->Add(sub2node);
5734           sub1node->cd();
5735           //
5736           // Place copy #4 of ITS5 directly in I565
5737           //
5738           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,29.3846,"");
5739           sub2node->SetLineColor(kColorITS);
5740           sub2node->SetVisibility(1);
5741           //fNodes->Add(sub2node);
5742           sub1node->cd();
5743           //
5744           // Place copy #5 of ITS5 directly in I565
5745           //
5746           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,25.4746,"");
5747           sub2node->SetLineColor(kColorITS);
5748           sub2node->SetVisibility(1);
5749           //fNodes->Add(sub2node);
5750           sub1node->cd();
5751           //
5752           // Place copy #6 of ITS5 directly in I565
5753           //
5754           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,21.5446,"");
5755           sub2node->SetLineColor(kColorITS);
5756           sub2node->SetVisibility(1);
5757           //fNodes->Add(sub2node);
5758           sub1node->cd();
5759           //
5760           // Place copy #7 of ITS5 directly in I565
5761           //
5762           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,17.6346,"");
5763           sub2node->SetLineColor(kColorITS);
5764           sub2node->SetVisibility(1);
5765           //fNodes->Add(sub2node);
5766           sub1node->cd();
5767           //
5768           // Place copy #8 of ITS5 directly in I565
5769           //
5770           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,13.7046,"");
5771           sub2node->SetLineColor(kColorITS);
5772           sub2node->SetVisibility(1);
5773           //fNodes->Add(sub2node);
5774           sub1node->cd();
5775           //
5776           // Place copy #9 of ITS5 directly in I565
5777           //
5778           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,9.7946,"");
5779           sub2node->SetLineColor(kColorITS);
5780           sub2node->SetVisibility(1);
5781           //fNodes->Add(sub2node);
5782           sub1node->cd();
5783           //
5784           // Place copy #10 of ITS5 directly in I565
5785           //
5786           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,5.8645,"");
5787           sub2node->SetLineColor(kColorITS);
5788           sub2node->SetVisibility(1);
5789           //fNodes->Add(sub2node);
5790           sub1node->cd();
5791           //
5792           // Place copy #11 of ITS5 directly in I565
5793           //
5794           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,1.9546,"");
5795           sub2node->SetLineColor(kColorITS);
5796           sub2node->SetVisibility(1);
5797           //fNodes->Add(sub2node);
5798           sub1node->cd();
5799           //
5800           // Place copy #12 of ITS5 directly in I565
5801           //
5802           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-1.9754,"");
5803           sub2node->SetLineColor(kColorITS);
5804           sub2node->SetVisibility(1);
5805           //fNodes->Add(sub2node);
5806           sub1node->cd();
5807           //
5808           // Place copy #13 of ITS5 directly in I565
5809           //
5810           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-5.8855,"");
5811           sub2node->SetLineColor(kColorITS);
5812           sub2node->SetVisibility(1);
5813           //fNodes->Add(sub2node);
5814           sub1node->cd();
5815           //
5816           // Place copy #14 of ITS5 directly in I565
5817           //
5818           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-9.8154,"");
5819           sub2node->SetLineColor(kColorITS);
5820           sub2node->SetVisibility(1);
5821           //fNodes->Add(sub2node);
5822           sub1node->cd();
5823           //
5824           // Place copy #15 of ITS5 directly in I565
5825           //
5826           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-13.7254,"");
5827           sub2node->SetLineColor(kColorITS);
5828           sub2node->SetVisibility(1);
5829           //fNodes->Add(sub2node);
5830           sub1node->cd();
5831           //
5832           // Place copy #16 of ITS5 directly in I565
5833           //
5834           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-17.6555,"");
5835           sub2node->SetLineColor(kColorITS);
5836           sub2node->SetVisibility(1);
5837           //fNodes->Add(sub2node);
5838           sub1node->cd();
5839           //
5840           // Place copy #17 of ITS5 directly in I565
5841           //
5842           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-21.5655,"");
5843           sub2node->SetLineColor(kColorITS);
5844           sub2node->SetVisibility(1);
5845           //fNodes->Add(sub2node);
5846           sub1node->cd();
5847           //
5848           // Place copy #18 of ITS5 directly in I565
5849           //
5850           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-25.4954,"");
5851           sub2node->SetLineColor(kColorITS);
5852           sub2node->SetVisibility(1);
5853           //fNodes->Add(sub2node);
5854           sub1node->cd();
5855           //
5856           // Place copy #19 of ITS5 directly in I565
5857           //
5858           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-29.4054,"");
5859           sub2node->SetLineColor(kColorITS);
5860           sub2node->SetVisibility(1);
5861           //fNodes->Add(sub2node);
5862           sub1node->cd();
5863           //
5864           // Place copy #20 of ITS5 directly in I565
5865           //
5866           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-33.3354,"");
5867           sub2node->SetLineColor(kColorITS);
5868           sub2node->SetVisibility(1);
5869           //fNodes->Add(sub2node);
5870           sub1node->cd();
5871           //
5872           // Place copy #21 of ITS5 directly in I565
5873           //
5874           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-37.2454,"");
5875           sub2node->SetLineColor(kColorITS);
5876           sub2node->SetVisibility(1);
5877           //fNodes->Add(sub2node);
5878           sub1node->cd();
5879           //
5880           // Place copy #22 of ITS5 directly in I565
5881           //
5882           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-41.1554,"");
5883           sub2node->SetLineColor(kColorITS);
5884           sub2node->SetVisibility(1);
5885           //fNodes->Add(sub2node);
5886           sub1node->cd();
5887        //fNodes->Add(sub1node);
5888        node->cd();
5889        //
5890        // Place copy #30 of I565 in IT56
5891        //
5892        sub1node = new TNode("I565","I565","I565",30.8022,23.2607,0.,"rot519");
5893        sub1node->SetLineColor(kColorITS);
5894        sub1node->SetVisibility(0);
5895        sub1node->cd();
5896           //
5897           // Place copy #1 of ITS5 directly in I565
5898           //
5899           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,41.1546,"");
5900           sub2node->SetLineColor(kColorITS);
5901           sub2node->SetVisibility(1);
5902           //fNodes->Add(sub2node);
5903           sub1node->cd();
5904           //
5905           // Place copy #2 of ITS5 directly in I565
5906           //
5907           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,37.2246,"");
5908           sub2node->SetLineColor(kColorITS);
5909           sub2node->SetVisibility(1);
5910           //fNodes->Add(sub2node);
5911           sub1node->cd();
5912           //
5913           // Place copy #3 of ITS5 directly in I565
5914           //
5915           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,33.3146,"");
5916           sub2node->SetLineColor(kColorITS);
5917           sub2node->SetVisibility(1);
5918           //fNodes->Add(sub2node);
5919           sub1node->cd();
5920           //
5921           // Place copy #4 of ITS5 directly in I565
5922           //
5923           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,29.3846,"");
5924           sub2node->SetLineColor(kColorITS);
5925           sub2node->SetVisibility(1);
5926           //fNodes->Add(sub2node);
5927           sub1node->cd();
5928           //
5929           // Place copy #5 of ITS5 directly in I565
5930           //
5931           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,25.4746,"");
5932           sub2node->SetLineColor(kColorITS);
5933           sub2node->SetVisibility(1);
5934           //fNodes->Add(sub2node);
5935           sub1node->cd();
5936           //
5937           // Place copy #6 of ITS5 directly in I565
5938           //
5939           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,21.5446,"");
5940           sub2node->SetLineColor(kColorITS);
5941           sub2node->SetVisibility(1);
5942           //fNodes->Add(sub2node);
5943           sub1node->cd();
5944           //
5945           // Place copy #7 of ITS5 directly in I565
5946           //
5947           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,17.6346,"");
5948           sub2node->SetLineColor(kColorITS);
5949           sub2node->SetVisibility(1);
5950           //fNodes->Add(sub2node);
5951           sub1node->cd();
5952           //
5953           // Place copy #8 of ITS5 directly in I565
5954           //
5955           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,13.7046,"");
5956           sub2node->SetLineColor(kColorITS);
5957           sub2node->SetVisibility(1);
5958           //fNodes->Add(sub2node);
5959           sub1node->cd();
5960           //
5961           // Place copy #9 of ITS5 directly in I565
5962           //
5963           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,9.7946,"");
5964           sub2node->SetLineColor(kColorITS);
5965           sub2node->SetVisibility(1);
5966           //fNodes->Add(sub2node);
5967           sub1node->cd();
5968           //
5969           // Place copy #10 of ITS5 directly in I565
5970           //
5971           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,5.8645,"");
5972           sub2node->SetLineColor(kColorITS);
5973           sub2node->SetVisibility(1);
5974           //fNodes->Add(sub2node);
5975           sub1node->cd();
5976           //
5977           // Place copy #11 of ITS5 directly in I565
5978           //
5979           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,1.9546,"");
5980           sub2node->SetLineColor(kColorITS);
5981           sub2node->SetVisibility(1);
5982           //fNodes->Add(sub2node);
5983           sub1node->cd();
5984           //
5985           // Place copy #12 of ITS5 directly in I565
5986           //
5987           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-1.9754,"");
5988           sub2node->SetLineColor(kColorITS);
5989           sub2node->SetVisibility(1);
5990           //fNodes->Add(sub2node);
5991           sub1node->cd();
5992           //
5993           // Place copy #13 of ITS5 directly in I565
5994           //
5995           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-5.8855,"");
5996           sub2node->SetLineColor(kColorITS);
5997           sub2node->SetVisibility(1);
5998           //fNodes->Add(sub2node);
5999           sub1node->cd();
6000           //
6001           // Place copy #14 of ITS5 directly in I565
6002           //
6003           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-9.8154,"");
6004           sub2node->SetLineColor(kColorITS);
6005           sub2node->SetVisibility(1);
6006           //fNodes->Add(sub2node);
6007           sub1node->cd();
6008           //
6009           // Place copy #15 of ITS5 directly in I565
6010           //
6011           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-13.7254,"");
6012           sub2node->SetLineColor(kColorITS);
6013           sub2node->SetVisibility(1);
6014           //fNodes->Add(sub2node);
6015           sub1node->cd();
6016           //
6017           // Place copy #16 of ITS5 directly in I565
6018           //
6019           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-17.6555,"");
6020           sub2node->SetLineColor(kColorITS);
6021           sub2node->SetVisibility(1);
6022           //fNodes->Add(sub2node);
6023           sub1node->cd();
6024           //
6025           // Place copy #17 of ITS5 directly in I565
6026           //
6027           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-21.5655,"");
6028           sub2node->SetLineColor(kColorITS);
6029           sub2node->SetVisibility(1);
6030           //fNodes->Add(sub2node);
6031           sub1node->cd();
6032           //
6033           // Place copy #18 of ITS5 directly in I565
6034           //
6035           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-25.4954,"");
6036           sub2node->SetLineColor(kColorITS);
6037           sub2node->SetVisibility(1);
6038           //fNodes->Add(sub2node);
6039           sub1node->cd();
6040           //
6041           // Place copy #19 of ITS5 directly in I565
6042           //
6043           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-29.4054,"");
6044           sub2node->SetLineColor(kColorITS);
6045           sub2node->SetVisibility(1);
6046           //fNodes->Add(sub2node);
6047           sub1node->cd();
6048           //
6049           // Place copy #20 of ITS5 directly in I565
6050           //
6051           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-33.3354,"");
6052           sub2node->SetLineColor(kColorITS);
6053           sub2node->SetVisibility(1);
6054           //fNodes->Add(sub2node);
6055           sub1node->cd();
6056           //
6057           // Place copy #21 of ITS5 directly in I565
6058           //
6059           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-37.2454,"");
6060           sub2node->SetLineColor(kColorITS);
6061           sub2node->SetVisibility(1);
6062           //fNodes->Add(sub2node);
6063           sub1node->cd();
6064           //
6065           // Place copy #22 of ITS5 directly in I565
6066           //
6067           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-41.1554,"");
6068           sub2node->SetLineColor(kColorITS);
6069           sub2node->SetVisibility(1);
6070           //fNodes->Add(sub2node);
6071           sub1node->cd();
6072        //fNodes->Add(sub1node);
6073        node->cd();
6074        //
6075        // Place copy #31 of I565 in IT56
6076        //
6077        sub1node = new TNode("I565","I565","I565",25.9002,28.4112,0.,"rot518");
6078        sub1node->SetLineColor(kColorITS);
6079        sub1node->SetVisibility(0);
6080        sub1node->cd();
6081           //
6082           // Place copy #1 of ITS5 directly in I565
6083           //
6084           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,41.1546,"");
6085           sub2node->SetLineColor(kColorITS);
6086           sub2node->SetVisibility(1);
6087           //fNodes->Add(sub2node);
6088           sub1node->cd();
6089           //
6090           // Place copy #2 of ITS5 directly in I565
6091           //
6092           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,37.2246,"");
6093           sub2node->SetLineColor(kColorITS);
6094           sub2node->SetVisibility(1);
6095           //fNodes->Add(sub2node);
6096           sub1node->cd();
6097           //
6098           // Place copy #3 of ITS5 directly in I565
6099           //
6100           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,33.3146,"");
6101           sub2node->SetLineColor(kColorITS);
6102           sub2node->SetVisibility(1);
6103           //fNodes->Add(sub2node);
6104           sub1node->cd();
6105           //
6106           // Place copy #4 of ITS5 directly in I565
6107           //
6108           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,29.3846,"");
6109           sub2node->SetLineColor(kColorITS);
6110           sub2node->SetVisibility(1);
6111           //fNodes->Add(sub2node);
6112           sub1node->cd();
6113           //
6114           // Place copy #5 of ITS5 directly in I565
6115           //
6116           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,25.4746,"");
6117           sub2node->SetLineColor(kColorITS);
6118           sub2node->SetVisibility(1);
6119           //fNodes->Add(sub2node);
6120           sub1node->cd();
6121           //
6122           // Place copy #6 of ITS5 directly in I565
6123           //
6124           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,21.5446,"");
6125           sub2node->SetLineColor(kColorITS);
6126           sub2node->SetVisibility(1);
6127           //fNodes->Add(sub2node);
6128           sub1node->cd();
6129           //
6130           // Place copy #7 of ITS5 directly in I565
6131           //
6132           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,17.6346,"");
6133           sub2node->SetLineColor(kColorITS);
6134           sub2node->SetVisibility(1);
6135           //fNodes->Add(sub2node);
6136           sub1node->cd();
6137           //
6138           // Place copy #8 of ITS5 directly in I565
6139           //
6140           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,13.7046,"");
6141           sub2node->SetLineColor(kColorITS);
6142           sub2node->SetVisibility(1);
6143           //fNodes->Add(sub2node);
6144           sub1node->cd();
6145           //
6146           // Place copy #9 of ITS5 directly in I565
6147           //
6148           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,9.7946,"");
6149           sub2node->SetLineColor(kColorITS);
6150           sub2node->SetVisibility(1);
6151           //fNodes->Add(sub2node);
6152           sub1node->cd();
6153           //
6154           // Place copy #10 of ITS5 directly in I565
6155           //
6156           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,5.8645,"");
6157           sub2node->SetLineColor(kColorITS);
6158           sub2node->SetVisibility(1);
6159           //fNodes->Add(sub2node);
6160           sub1node->cd();
6161           //
6162           // Place copy #11 of ITS5 directly in I565
6163           //
6164           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,1.9546,"");
6165           sub2node->SetLineColor(kColorITS);
6166           sub2node->SetVisibility(1);
6167           //fNodes->Add(sub2node);
6168           sub1node->cd();
6169           //
6170           // Place copy #12 of ITS5 directly in I565
6171           //
6172           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-1.9754,"");
6173           sub2node->SetLineColor(kColorITS);
6174           sub2node->SetVisibility(1);
6175           //fNodes->Add(sub2node);
6176           sub1node->cd();
6177           //
6178           // Place copy #13 of ITS5 directly in I565
6179           //
6180           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-5.8855,"");
6181           sub2node->SetLineColor(kColorITS);
6182           sub2node->SetVisibility(1);
6183           //fNodes->Add(sub2node);
6184           sub1node->cd();
6185           //
6186           // Place copy #14 of ITS5 directly in I565
6187           //
6188           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-9.8154,"");
6189           sub2node->SetLineColor(kColorITS);
6190           sub2node->SetVisibility(1);
6191           //fNodes->Add(sub2node);
6192           sub1node->cd();
6193           //
6194           // Place copy #15 of ITS5 directly in I565
6195           //
6196           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-13.7254,"");
6197           sub2node->SetLineColor(kColorITS);
6198           sub2node->SetVisibility(1);
6199           //fNodes->Add(sub2node);
6200           sub1node->cd();
6201           //
6202           // Place copy #16 of ITS5 directly in I565
6203           //
6204           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-17.6555,"");
6205           sub2node->SetLineColor(kColorITS);
6206           sub2node->SetVisibility(1);
6207           //fNodes->Add(sub2node);
6208           sub1node->cd();
6209           //
6210           // Place copy #17 of ITS5 directly in I565
6211           //
6212           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-21.5655,"");
6213           sub2node->SetLineColor(kColorITS);
6214           sub2node->SetVisibility(1);
6215           //fNodes->Add(sub2node);
6216           sub1node->cd();
6217           //
6218           // Place copy #18 of ITS5 directly in I565
6219           //
6220           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-25.4954,"");
6221           sub2node->SetLineColor(kColorITS);
6222           sub2node->SetVisibility(1);
6223           //fNodes->Add(sub2node);
6224           sub1node->cd();
6225           //
6226           // Place copy #19 of ITS5 directly in I565
6227           //
6228           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-29.4054,"");
6229           sub2node->SetLineColor(kColorITS);
6230           sub2node->SetVisibility(1);
6231           //fNodes->Add(sub2node);
6232           sub1node->cd();
6233           //
6234           // Place copy #20 of ITS5 directly in I565
6235           //
6236           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-33.3354,"");
6237           sub2node->SetLineColor(kColorITS);
6238           sub2node->SetVisibility(1);
6239           //fNodes->Add(sub2node);
6240           sub1node->cd();
6241           //
6242           // Place copy #21 of ITS5 directly in I565
6243           //
6244           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-37.2454,"");
6245           sub2node->SetLineColor(kColorITS);
6246           sub2node->SetVisibility(1);
6247           //fNodes->Add(sub2node);
6248           sub1node->cd();
6249           //
6250           // Place copy #22 of ITS5 directly in I565
6251           //
6252           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-41.1554,"");
6253           sub2node->SetLineColor(kColorITS);
6254           sub2node->SetVisibility(1);
6255           //fNodes->Add(sub2node);
6256           sub1node->cd();
6257        //fNodes->Add(sub1node);
6258        node->cd();
6259        //
6260        // Place copy #32 of I565 in IT56
6261        //
6262        sub1node = new TNode("I565","I565","I565",20.3195,32.817,0.,"rot517");
6263        sub1node->SetLineColor(kColorITS);
6264        sub1node->SetVisibility(0);
6265        sub1node->cd();
6266           //
6267           // Place copy #1 of ITS5 directly in I565
6268           //
6269           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,41.1546,"");
6270           sub2node->SetLineColor(kColorITS);
6271           sub2node->SetVisibility(1);
6272           //fNodes->Add(sub2node);
6273           sub1node->cd();
6274           //
6275           // Place copy #2 of ITS5 directly in I565
6276           //
6277           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,37.2246,"");
6278           sub2node->SetLineColor(kColorITS);
6279           sub2node->SetVisibility(1);
6280           //fNodes->Add(sub2node);
6281           sub1node->cd();
6282           //
6283           // Place copy #3 of ITS5 directly in I565
6284           //
6285           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,33.3146,"");
6286           sub2node->SetLineColor(kColorITS);
6287           sub2node->SetVisibility(1);
6288           //fNodes->Add(sub2node);
6289           sub1node->cd();
6290           //
6291           // Place copy #4 of ITS5 directly in I565
6292           //
6293           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,29.3846,"");
6294           sub2node->SetLineColor(kColorITS);
6295           sub2node->SetVisibility(1);
6296           //fNodes->Add(sub2node);
6297           sub1node->cd();
6298           //
6299           // Place copy #5 of ITS5 directly in I565
6300           //
6301           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,25.4746,"");
6302           sub2node->SetLineColor(kColorITS);
6303           sub2node->SetVisibility(1);
6304           //fNodes->Add(sub2node);
6305           sub1node->cd();
6306           //
6307           // Place copy #6 of ITS5 directly in I565
6308           //
6309           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,21.5446,"");
6310           sub2node->SetLineColor(kColorITS);
6311           sub2node->SetVisibility(1);
6312           //fNodes->Add(sub2node);
6313           sub1node->cd();
6314           //
6315           // Place copy #7 of ITS5 directly in I565
6316           //
6317           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,17.6346,"");
6318           sub2node->SetLineColor(kColorITS);
6319           sub2node->SetVisibility(1);
6320           //fNodes->Add(sub2node);
6321           sub1node->cd();
6322           //
6323           // Place copy #8 of ITS5 directly in I565
6324           //
6325           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,13.7046,"");
6326           sub2node->SetLineColor(kColorITS);
6327           sub2node->SetVisibility(1);
6328           //fNodes->Add(sub2node);
6329           sub1node->cd();
6330           //
6331           // Place copy #9 of ITS5 directly in I565
6332           //
6333           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,9.7946,"");
6334           sub2node->SetLineColor(kColorITS);
6335           sub2node->SetVisibility(1);
6336           //fNodes->Add(sub2node);
6337           sub1node->cd();
6338           //
6339           // Place copy #10 of ITS5 directly in I565
6340           //
6341           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,5.8645,"");
6342           sub2node->SetLineColor(kColorITS);
6343           sub2node->SetVisibility(1);
6344           //fNodes->Add(sub2node);
6345           sub1node->cd();
6346           //
6347           // Place copy #11 of ITS5 directly in I565
6348           //
6349           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,1.9546,"");
6350           sub2node->SetLineColor(kColorITS);
6351           sub2node->SetVisibility(1);
6352           //fNodes->Add(sub2node);
6353           sub1node->cd();
6354           //
6355           // Place copy #12 of ITS5 directly in I565
6356           //
6357           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-1.9754,"");
6358           sub2node->SetLineColor(kColorITS);
6359           sub2node->SetVisibility(1);
6360           //fNodes->Add(sub2node);
6361           sub1node->cd();
6362           //
6363           // Place copy #13 of ITS5 directly in I565
6364           //
6365           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-5.8855,"");
6366           sub2node->SetLineColor(kColorITS);
6367           sub2node->SetVisibility(1);
6368           //fNodes->Add(sub2node);
6369           sub1node->cd();
6370           //
6371           // Place copy #14 of ITS5 directly in I565
6372           //
6373           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-9.8154,"");
6374           sub2node->SetLineColor(kColorITS);
6375           sub2node->SetVisibility(1);
6376           //fNodes->Add(sub2node);
6377           sub1node->cd();
6378           //
6379           // Place copy #15 of ITS5 directly in I565
6380           //
6381           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-13.7254,"");
6382           sub2node->SetLineColor(kColorITS);
6383           sub2node->SetVisibility(1);
6384           //fNodes->Add(sub2node);
6385           sub1node->cd();
6386           //
6387           // Place copy #16 of ITS5 directly in I565
6388           //
6389           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-17.6555,"");
6390           sub2node->SetLineColor(kColorITS);
6391           sub2node->SetVisibility(1);
6392           //fNodes->Add(sub2node);
6393           sub1node->cd();
6394           //
6395           // Place copy #17 of ITS5 directly in I565
6396           //
6397           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-21.5655,"");
6398           sub2node->SetLineColor(kColorITS);
6399           sub2node->SetVisibility(1);
6400           //fNodes->Add(sub2node);
6401           sub1node->cd();
6402           //
6403           // Place copy #18 of ITS5 directly in I565
6404           //
6405           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-25.4954,"");
6406           sub2node->SetLineColor(kColorITS);
6407           sub2node->SetVisibility(1);
6408           //fNodes->Add(sub2node);
6409           sub1node->cd();
6410           //
6411           // Place copy #19 of ITS5 directly in I565
6412           //
6413           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-29.4054,"");
6414           sub2node->SetLineColor(kColorITS);
6415           sub2node->SetVisibility(1);
6416           //fNodes->Add(sub2node);
6417           sub1node->cd();
6418           //
6419           // Place copy #20 of ITS5 directly in I565
6420           //
6421           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-33.3354,"");
6422           sub2node->SetLineColor(kColorITS);
6423           sub2node->SetVisibility(1);
6424           //fNodes->Add(sub2node);
6425           sub1node->cd();
6426           //
6427           // Place copy #21 of ITS5 directly in I565
6428           //
6429           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-37.2454,"");
6430           sub2node->SetLineColor(kColorITS);
6431           sub2node->SetVisibility(1);
6432           //fNodes->Add(sub2node);
6433           sub1node->cd();
6434           //
6435           // Place copy #22 of ITS5 directly in I565
6436           //
6437           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-41.1554,"");
6438           sub2node->SetLineColor(kColorITS);
6439           sub2node->SetVisibility(1);
6440           //fNodes->Add(sub2node);
6441           sub1node->cd();
6442        //fNodes->Add(sub1node);
6443        node->cd();
6444        //
6445        // Place copy #33 of I565 in IT56
6446        //
6447        sub1node = new TNode("I565","I565","I565",13.888,35.8489,0.,"rot516");
6448        sub1node->SetLineColor(kColorITS);
6449        sub1node->SetVisibility(0);
6450        sub1node->cd();
6451           //
6452           // Place copy #1 of ITS5 directly in I565
6453           //
6454           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,41.1546,"");
6455           sub2node->SetLineColor(kColorITS);
6456           sub2node->SetVisibility(1);
6457           //fNodes->Add(sub2node);
6458           sub1node->cd();
6459           //
6460           // Place copy #2 of ITS5 directly in I565
6461           //
6462           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,37.2246,"");
6463           sub2node->SetLineColor(kColorITS);
6464           sub2node->SetVisibility(1);
6465           //fNodes->Add(sub2node);
6466           sub1node->cd();
6467           //
6468           // Place copy #3 of ITS5 directly in I565
6469           //
6470           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,33.3146,"");
6471           sub2node->SetLineColor(kColorITS);
6472           sub2node->SetVisibility(1);
6473           //fNodes->Add(sub2node);
6474           sub1node->cd();
6475           //
6476           // Place copy #4 of ITS5 directly in I565
6477           //
6478           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,29.3846,"");
6479           sub2node->SetLineColor(kColorITS);
6480           sub2node->SetVisibility(1);
6481           //fNodes->Add(sub2node);
6482           sub1node->cd();
6483           //
6484           // Place copy #5 of ITS5 directly in I565
6485           //
6486           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,25.4746,"");
6487           sub2node->SetLineColor(kColorITS);
6488           sub2node->SetVisibility(1);
6489           //fNodes->Add(sub2node);
6490           sub1node->cd();
6491           //
6492           // Place copy #6 of ITS5 directly in I565
6493           //
6494           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,21.5446,"");
6495           sub2node->SetLineColor(kColorITS);
6496           sub2node->SetVisibility(1);
6497           //fNodes->Add(sub2node);
6498           sub1node->cd();
6499           //
6500           // Place copy #7 of ITS5 directly in I565
6501           //
6502           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,17.6346,"");
6503           sub2node->SetLineColor(kColorITS);
6504           sub2node->SetVisibility(1);
6505           //fNodes->Add(sub2node);
6506           sub1node->cd();
6507           //
6508           // Place copy #8 of ITS5 directly in I565
6509           //
6510           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,13.7046,"");
6511           sub2node->SetLineColor(kColorITS);
6512           sub2node->SetVisibility(1);
6513           //fNodes->Add(sub2node);
6514           sub1node->cd();
6515           //
6516           // Place copy #9 of ITS5 directly in I565
6517           //
6518           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,9.7946,"");
6519           sub2node->SetLineColor(kColorITS);
6520           sub2node->SetVisibility(1);
6521           //fNodes->Add(sub2node);
6522           sub1node->cd();
6523           //
6524           // Place copy #10 of ITS5 directly in I565
6525           //
6526           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,5.8645,"");
6527           sub2node->SetLineColor(kColorITS);
6528           sub2node->SetVisibility(1);
6529           //fNodes->Add(sub2node);
6530           sub1node->cd();
6531           //
6532           // Place copy #11 of ITS5 directly in I565
6533           //
6534           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,1.9546,"");
6535           sub2node->SetLineColor(kColorITS);
6536           sub2node->SetVisibility(1);
6537           //fNodes->Add(sub2node);
6538           sub1node->cd();
6539           //
6540           // Place copy #12 of ITS5 directly in I565
6541           //
6542           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-1.9754,"");
6543           sub2node->SetLineColor(kColorITS);
6544           sub2node->SetVisibility(1);
6545           //fNodes->Add(sub2node);
6546           sub1node->cd();
6547           //
6548           // Place copy #13 of ITS5 directly in I565
6549           //
6550           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-5.8855,"");
6551           sub2node->SetLineColor(kColorITS);
6552           sub2node->SetVisibility(1);
6553           //fNodes->Add(sub2node);
6554           sub1node->cd();
6555           //
6556           // Place copy #14 of ITS5 directly in I565
6557           //
6558           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-9.8154,"");
6559           sub2node->SetLineColor(kColorITS);
6560           sub2node->SetVisibility(1);
6561           //fNodes->Add(sub2node);
6562           sub1node->cd();
6563           //
6564           // Place copy #15 of ITS5 directly in I565
6565           //
6566           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-13.7254,"");
6567           sub2node->SetLineColor(kColorITS);
6568           sub2node->SetVisibility(1);
6569           //fNodes->Add(sub2node);
6570           sub1node->cd();
6571           //
6572           // Place copy #16 of ITS5 directly in I565
6573           //
6574           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-17.6555,"");
6575           sub2node->SetLineColor(kColorITS);
6576           sub2node->SetVisibility(1);
6577           //fNodes->Add(sub2node);
6578           sub1node->cd();
6579           //
6580           // Place copy #17 of ITS5 directly in I565
6581           //
6582           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-21.5655,"");
6583           sub2node->SetLineColor(kColorITS);
6584           sub2node->SetVisibility(1);
6585           //fNodes->Add(sub2node);
6586           sub1node->cd();
6587           //
6588           // Place copy #18 of ITS5 directly in I565
6589           //
6590           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-25.4954,"");
6591           sub2node->SetLineColor(kColorITS);
6592           sub2node->SetVisibility(1);
6593           //fNodes->Add(sub2node);
6594           sub1node->cd();
6595           //
6596           // Place copy #19 of ITS5 directly in I565
6597           //
6598           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-29.4054,"");
6599           sub2node->SetLineColor(kColorITS);
6600           sub2node->SetVisibility(1);
6601           //fNodes->Add(sub2node);
6602           sub1node->cd();
6603           //
6604           // Place copy #20 of ITS5 directly in I565
6605           //
6606           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-33.3354,"");
6607           sub2node->SetLineColor(kColorITS);
6608           sub2node->SetVisibility(1);
6609           //fNodes->Add(sub2node);
6610           sub1node->cd();
6611           //
6612           // Place copy #21 of ITS5 directly in I565
6613           //
6614           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-37.2454,"");
6615           sub2node->SetLineColor(kColorITS);
6616           sub2node->SetVisibility(1);
6617           //fNodes->Add(sub2node);
6618           sub1node->cd();
6619           //
6620           // Place copy #22 of ITS5 directly in I565
6621           //
6622           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-41.1554,"");
6623           sub2node->SetLineColor(kColorITS);
6624           sub2node->SetVisibility(1);
6625           //fNodes->Add(sub2node);
6626           sub1node->cd();
6627        //fNodes->Add(sub1node);
6628        node->cd();
6629        //
6630        // Place copy #34 of I565 in IT56
6631        //
6632        sub1node = new TNode("I565","I565","I565",7.0925,37.9412,0.,"rot515");
6633        sub1node->SetLineColor(kColorITS);
6634        sub1node->SetVisibility(0);
6635        sub1node->cd();
6636           //
6637           // Place copy #1 of ITS5 directly in I565
6638           //
6639           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,41.1546,"");
6640           sub2node->SetLineColor(kColorITS);
6641           sub2node->SetVisibility(1);
6642           //fNodes->Add(sub2node);
6643           sub1node->cd();
6644           //
6645           // Place copy #2 of ITS5 directly in I565
6646           //
6647           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,37.2246,"");
6648           sub2node->SetLineColor(kColorITS);
6649           sub2node->SetVisibility(1);
6650           //fNodes->Add(sub2node);
6651           sub1node->cd();
6652           //
6653           // Place copy #3 of ITS5 directly in I565
6654           //
6655           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,33.3146,"");
6656           sub2node->SetLineColor(kColorITS);
6657           sub2node->SetVisibility(1);
6658           //fNodes->Add(sub2node);
6659           sub1node->cd();
6660           //
6661           // Place copy #4 of ITS5 directly in I565
6662           //
6663           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,29.3846,"");
6664           sub2node->SetLineColor(kColorITS);
6665           sub2node->SetVisibility(1);
6666           //fNodes->Add(sub2node);
6667           sub1node->cd();
6668           //
6669           // Place copy #5 of ITS5 directly in I565
6670           //
6671           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,25.4746,"");
6672           sub2node->SetLineColor(kColorITS);
6673           sub2node->SetVisibility(1);
6674           //fNodes->Add(sub2node);
6675           sub1node->cd();
6676           //
6677           // Place copy #6 of ITS5 directly in I565
6678           //
6679           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,21.5446,"");
6680           sub2node->SetLineColor(kColorITS);
6681           sub2node->SetVisibility(1);
6682           //fNodes->Add(sub2node);
6683           sub1node->cd();
6684           //
6685           // Place copy #7 of ITS5 directly in I565
6686           //
6687           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,17.6346,"");
6688           sub2node->SetLineColor(kColorITS);
6689           sub2node->SetVisibility(1);
6690           //fNodes->Add(sub2node);
6691           sub1node->cd();
6692           //
6693           // Place copy #8 of ITS5 directly in I565
6694           //
6695           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,13.7046,"");
6696           sub2node->SetLineColor(kColorITS);
6697           sub2node->SetVisibility(1);
6698           //fNodes->Add(sub2node);
6699           sub1node->cd();
6700           //
6701           // Place copy #9 of ITS5 directly in I565
6702           //
6703           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,9.7946,"");
6704           sub2node->SetLineColor(kColorITS);
6705           sub2node->SetVisibility(1);
6706           //fNodes->Add(sub2node);
6707           sub1node->cd();
6708           //
6709           // Place copy #10 of ITS5 directly in I565
6710           //
6711           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,5.8645,"");
6712           sub2node->SetLineColor(kColorITS);
6713           sub2node->SetVisibility(1);
6714           //fNodes->Add(sub2node);
6715           sub1node->cd();
6716           //
6717           // Place copy #11 of ITS5 directly in I565
6718           //
6719           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,1.9546,"");
6720           sub2node->SetLineColor(kColorITS);
6721           sub2node->SetVisibility(1);
6722           //fNodes->Add(sub2node);
6723           sub1node->cd();
6724           //
6725           // Place copy #12 of ITS5 directly in I565
6726           //
6727           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-1.9754,"");
6728           sub2node->SetLineColor(kColorITS);
6729           sub2node->SetVisibility(1);
6730           //fNodes->Add(sub2node);
6731           sub1node->cd();
6732           //
6733           // Place copy #13 of ITS5 directly in I565
6734           //
6735           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-5.8855,"");
6736           sub2node->SetLineColor(kColorITS);
6737           sub2node->SetVisibility(1);
6738           //fNodes->Add(sub2node);
6739           sub1node->cd();
6740           //
6741           // Place copy #14 of ITS5 directly in I565
6742           //
6743           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-9.8154,"");
6744           sub2node->SetLineColor(kColorITS);
6745           sub2node->SetVisibility(1);
6746           //fNodes->Add(sub2node);
6747           sub1node->cd();
6748           //
6749           // Place copy #15 of ITS5 directly in I565
6750           //
6751           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-13.7254,"");
6752           sub2node->SetLineColor(kColorITS);
6753           sub2node->SetVisibility(1);
6754           //fNodes->Add(sub2node);
6755           sub1node->cd();
6756           //
6757           // Place copy #16 of ITS5 directly in I565
6758           //
6759           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-17.6555,"");
6760           sub2node->SetLineColor(kColorITS);
6761           sub2node->SetVisibility(1);
6762           //fNodes->Add(sub2node);
6763           sub1node->cd();
6764           //
6765           // Place copy #17 of ITS5 directly in I565
6766           //
6767           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-21.5655,"");
6768           sub2node->SetLineColor(kColorITS);
6769           sub2node->SetVisibility(1);
6770           //fNodes->Add(sub2node);
6771           sub1node->cd();
6772           //
6773           // Place copy #18 of ITS5 directly in I565
6774           //
6775           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-25.4954,"");
6776           sub2node->SetLineColor(kColorITS);
6777           sub2node->SetVisibility(1);
6778           //fNodes->Add(sub2node);
6779           sub1node->cd();
6780           //
6781           // Place copy #19 of ITS5 directly in I565
6782           //
6783           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-29.4054,"");
6784           sub2node->SetLineColor(kColorITS);
6785           sub2node->SetVisibility(1);
6786           //fNodes->Add(sub2node);
6787           sub1node->cd();
6788           //
6789           // Place copy #20 of ITS5 directly in I565
6790           //
6791           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-33.3354,"");
6792           sub2node->SetLineColor(kColorITS);
6793           sub2node->SetVisibility(1);
6794           //fNodes->Add(sub2node);
6795           sub1node->cd();
6796           //
6797           // Place copy #21 of ITS5 directly in I565
6798           //
6799           sub2node = new TNode("ITS5","ITS5","ITS5",0.,0.03,-37.2454,"");
6800           sub2node->SetLineColor(kColorITS);
6801           sub2node->SetVisibility(1);
6802           //fNodes->Add(sub2node);
6803           sub1node->cd();
6804           //
6805           // Place copy #22 of ITS5 directly in I565
6806           //
6807           sub2node = new TNode("ITS5","ITS5","ITS5",0.,-0.03,-41.1554,"");
6808           sub2node->SetLineColor(kColorITS);
6809           sub2node->SetVisibility(1);
6810           //fNodes->Add(sub2node);
6811           sub1node->cd();
6812        //fNodes->Add(sub1node);
6813        node->cd();
6814        //
6815        // Place copy #1 of I569 in IT56
6816        //
6817        sub1node = new TNode("I569","I569","I569",-14.139,41.1856,0.,"rot553");
6818        sub1node->SetLineColor(kColorITS);
6819        sub1node->SetVisibility(0);
6820        sub1node->cd();
6821           //
6822           // Place copy #1 of ITS6 in I569
6823           //
6824           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,46.9203,"rot532");
6825           sub2node->SetLineColor(kColorITS);
6826           sub2node->SetVisibility(1);
6827           //fNodes->Add(sub2node);
6828           sub1node->cd();
6829           //
6830           // Place copy #2 of ITS6 in I569
6831           //
6832           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,43.0103,"");
6833           sub2node->SetLineColor(kColorITS);
6834           sub2node->SetVisibility(1);
6835           //fNodes->Add(sub2node);
6836           sub1node->cd();
6837           //
6838           // Place copy #3 of ITS6 in I569
6839           //
6840           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,39.1003,"rot532");
6841           sub2node->SetLineColor(kColorITS);
6842           sub2node->SetVisibility(1);
6843           //fNodes->Add(sub2node);
6844           sub1node->cd();
6845           //
6846           // Place copy #4 of ITS6 in I569
6847           //
6848           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,35.1903,"");
6849           sub2node->SetLineColor(kColorITS);
6850           sub2node->SetVisibility(1);  
6851           //fNodes->Add(sub2node);
6852           sub1node->cd();
6853           //
6854           // Place copy #5 of ITS6 in I569
6855           //
6856           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,31.2803,"rot532");
6857           sub2node->SetLineColor(kColorITS);
6858           sub2node->SetVisibility(1);
6859           //fNodes->Add(sub2node);
6860           sub1node->cd();
6861           //
6862           // Place copy #6 of ITS6 in I569
6863           //
6864           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,27.3703,"");
6865           sub2node->SetLineColor(kColorITS);
6866           sub2node->SetVisibility(1);
6867           //fNodes->Add(sub2node);
6868           sub1node->cd();
6869           //
6870           // Place copy #7 of ITS6 in I569
6871           //
6872           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,23.4603,"rot532");
6873           sub2node->SetLineColor(kColorITS);
6874           sub2node->SetVisibility(1);   
6875           //fNodes->Add(sub2node);
6876           sub1node->cd();
6877           //
6878           // Place copy #8 of ITS6 in I569
6879           //
6880           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,19.5503,"");
6881           sub2node->SetLineColor(kColorITS);
6882           sub2node->SetVisibility(1);
6883           //fNodes->Add(sub2node);
6884           sub1node->cd();
6885           //
6886           // Place copy #9 of ITS6 in I569
6887           //
6888           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,15.6403,"rot532");
6889           sub2node->SetLineColor(kColorITS);
6890           sub2node->SetVisibility(1);  
6891           //fNodes->Add(sub2node);
6892           sub1node->cd();
6893           //
6894           // Place copy #10 of ITS6 in I569
6895           //
6896           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,11.7303,"");
6897           sub2node->SetLineColor(kColorITS);
6898           sub2node->SetVisibility(1);
6899           //fNodes->Add(sub2node);
6900           sub1node->cd();
6901           //
6902           // Place copy #11 of ITS6 in I569
6903           //
6904           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,7.8203,"rot532");
6905           sub2node->SetLineColor(kColorITS);
6906           sub2node->SetVisibility(1);
6907           //fNodes->Add(sub2node);
6908           sub1node->cd();
6909           //
6910           // Place copy #12 of ITS6 in I569
6911           //
6912           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,3.9103,"");
6913           sub2node->SetLineColor(kColorITS);
6914           sub2node->SetVisibility(1);
6915           //fNodes->Add(sub2node);
6916           sub1node->cd();
6917           //
6918           // Place copy #13 of ITS6 in I569
6919           //
6920           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,0.0003,"");
6921           sub2node->SetLineColor(kColorITS);
6922           sub2node->SetVisibility(1);  
6923           //fNodes->Add(sub2node);
6924           sub1node->cd();
6925           //
6926           // Place copy #14 of ITS6 in I569
6927           //
6928           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-3.9097,"");
6929           sub2node->SetLineColor(kColorITS);
6930           sub2node->SetVisibility(1);
6931           //fNodes->Add(sub2node);
6932           sub1node->cd();
6933           //
6934           // Place copy #15 of ITS6 in I569
6935           //
6936           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-7.8197,"rot532");
6937           sub2node->SetLineColor(kColorITS);
6938           sub2node->SetVisibility(1);
6939           //fNodes->Add(sub2node);
6940           sub1node->cd();
6941           //
6942           // Place copy #16 of ITS6 in I569
6943           //
6944           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-11.7297,"");
6945           sub2node->SetLineColor(kColorITS);
6946           sub2node->SetVisibility(1);
6947           //fNodes->Add(sub2node);
6948           sub1node->cd();
6949           //
6950           // Place copy #17 of ITS6 in I569
6951           //
6952           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-15.6397,"");
6953           sub2node->SetLineColor(kColorITS);
6954           sub2node->SetVisibility(1);
6955           //fNodes->Add(sub2node);
6956           sub1node->cd();
6957           //
6958           // Place copy #18 of ITS6 in I569
6959           //
6960           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-19.5497,"");
6961           sub2node->SetLineColor(kColorITS);
6962           sub2node->SetVisibility(1);
6963           //fNodes->Add(sub2node);
6964           sub1node->cd();
6965           //
6966           // Place copy #19 of ITS6 in I569
6967           //
6968           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-23.4597,"rot532");
6969           sub2node->SetLineColor(kColorITS);
6970           sub2node->SetVisibility(1);   
6971           //fNodes->Add(sub2node);
6972           sub1node->cd();
6973           //
6974           // Place copy #20 of ITS6 in I569
6975           //
6976           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-27.3697,"");
6977           sub2node->SetLineColor(kColorITS);
6978           sub2node->SetVisibility(1);
6979           //fNodes->Add(sub2node);
6980           sub1node->cd();
6981           //
6982           // Place copy #21 of ITS6 in I569
6983           //
6984           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-31.2797,"rot532");
6985           sub2node->SetLineColor(kColorITS);
6986           sub2node->SetVisibility(1);
6987           //fNodes->Add(sub2node);
6988           sub1node->cd();
6989           //
6990           // Place copy #22 of ITS6 in I569
6991           //
6992           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-35.1897,"");
6993           sub2node->SetLineColor(kColorITS);
6994           sub2node->SetVisibility(1);
6995           //fNodes->Add(sub2node);
6996           sub1node->cd();
6997           //
6998           // Place copy #23 of ITS6 in I569
6999           //
7000           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-39.0997,"");
7001           sub2node->SetLineColor(kColorITS);
7002           sub2node->SetVisibility(1);
7003           //fNodes->Add(sub2node);
7004           sub1node->cd();
7005           //
7006           // Place copy #24 of ITS6 in I569
7007           //
7008           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-43.0097,"");
7009           sub2node->SetLineColor(kColorITS);
7010           sub2node->SetVisibility(1); 
7011           //fNodes->Add(sub2node);
7012           sub1node->cd();
7013           //
7014           // Place copy #25 of ITS6 in I569
7015           //
7016           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-46.9197,"rot532");
7017           sub2node->SetLineColor(kColorITS);
7018           sub2node->SetVisibility(1);
7019           //fNodes->Add(sub2node);
7020           sub1node->cd();                                                                                                                                                                                         
7021        //fNodes->Add(sub1node);
7022        node->cd();
7023        //
7024        // Place copy #2 of I569 in IT56
7025        //
7026        sub1node = new TNode("I569","I569","I569",-20.7978,38.431,0.,"rot620");
7027        sub1node->SetLineColor(kColorITS);
7028        sub1node->SetVisibility(0);
7029        sub1node->cd();
7030           //
7031           // Place copy #1 of ITS6 in I569
7032           //
7033           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,46.9203,"rot532");
7034           sub2node->SetLineColor(kColorITS);
7035           sub2node->SetVisibility(1);
7036           //fNodes->Add(sub2node);
7037           sub1node->cd();
7038           //
7039           // Place copy #2 of ITS6 in I569
7040           //
7041           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,43.0103,"");
7042           sub2node->SetLineColor(kColorITS);
7043           sub2node->SetVisibility(1);
7044           //fNodes->Add(sub2node);
7045           sub1node->cd();
7046           //
7047           // Place copy #3 of ITS6 in I569
7048           //
7049           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,39.1003,"rot532");
7050           sub2node->SetLineColor(kColorITS);
7051           sub2node->SetVisibility(1);
7052           //fNodes->Add(sub2node);
7053           sub1node->cd();
7054           //
7055           // Place copy #4 of ITS6 in I569
7056           //
7057           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,35.1903,"");
7058           sub2node->SetLineColor(kColorITS);
7059           sub2node->SetVisibility(1);  
7060           //fNodes->Add(sub2node);
7061           sub1node->cd();
7062           //
7063           // Place copy #5 of ITS6 in I569
7064           //
7065           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,31.2803,"rot532");
7066           sub2node->SetLineColor(kColorITS);
7067           sub2node->SetVisibility(1);
7068           //fNodes->Add(sub2node);
7069           sub1node->cd();
7070           //
7071           // Place copy #6 of ITS6 in I569
7072           //
7073           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,27.3703,"");
7074           sub2node->SetLineColor(kColorITS);
7075           sub2node->SetVisibility(1);
7076           //fNodes->Add(sub2node);
7077           sub1node->cd();
7078           //
7079           // Place copy #7 of ITS6 in I569
7080           //
7081           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,23.4603,"rot532");
7082           sub2node->SetLineColor(kColorITS);
7083           sub2node->SetVisibility(1);   
7084           //fNodes->Add(sub2node);
7085           sub1node->cd();
7086           //
7087           // Place copy #8 of ITS6 in I569
7088           //
7089           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,19.5503,"");
7090           sub2node->SetLineColor(kColorITS);
7091           sub2node->SetVisibility(1);
7092           //fNodes->Add(sub2node);
7093           sub1node->cd();
7094           //
7095           // Place copy #9 of ITS6 in I569
7096           //
7097           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,15.6403,"rot532");
7098           sub2node->SetLineColor(kColorITS);
7099           sub2node->SetVisibility(1);  
7100           //fNodes->Add(sub2node);
7101           sub1node->cd();
7102           //
7103           // Place copy #10 of ITS6 in I569
7104           //
7105           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,11.7303,"");
7106           sub2node->SetLineColor(kColorITS);
7107           sub2node->SetVisibility(1);
7108           //fNodes->Add(sub2node);
7109           sub1node->cd();
7110           //
7111           // Place copy #11 of ITS6 in I569
7112           //
7113           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,7.8203,"rot532");
7114           sub2node->SetLineColor(kColorITS);
7115           sub2node->SetVisibility(1);
7116           //fNodes->Add(sub2node);
7117           sub1node->cd();
7118           //
7119           // Place copy #12 of ITS6 in I569
7120           //
7121           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,3.9103,"");
7122           sub2node->SetLineColor(kColorITS);
7123           sub2node->SetVisibility(1);
7124           //fNodes->Add(sub2node);
7125           sub1node->cd();
7126           //
7127           // Place copy #13 of ITS6 in I569
7128           //
7129           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,0.0003,"");
7130           sub2node->SetLineColor(kColorITS);
7131           sub2node->SetVisibility(1);  
7132           //fNodes->Add(sub2node);
7133           sub1node->cd();
7134           //
7135           // Place copy #14 of ITS6 in I569
7136           //
7137           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-3.9097,"");
7138           sub2node->SetLineColor(kColorITS);
7139           sub2node->SetVisibility(1);
7140           //fNodes->Add(sub2node);
7141           sub1node->cd();
7142           //
7143           // Place copy #15 of ITS6 in I569
7144           //
7145           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-7.8197,"rot532");
7146           sub2node->SetLineColor(kColorITS);
7147           sub2node->SetVisibility(1);
7148           //fNodes->Add(sub2node);
7149           sub1node->cd();
7150           //
7151           // Place copy #16 of ITS6 in I569
7152           //
7153           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-11.7297,"");
7154           sub2node->SetLineColor(kColorITS);
7155           sub2node->SetVisibility(1);
7156           //fNodes->Add(sub2node);
7157           sub1node->cd();
7158           //
7159           // Place copy #17 of ITS6 in I569
7160           //
7161           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-15.6397,"");
7162           sub2node->SetLineColor(kColorITS);
7163           sub2node->SetVisibility(1);
7164           //fNodes->Add(sub2node);
7165           sub1node->cd();
7166           //
7167           // Place copy #18 of ITS6 in I569
7168           //
7169           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-19.5497,"");
7170           sub2node->SetLineColor(kColorITS);
7171           sub2node->SetVisibility(1);
7172           //fNodes->Add(sub2node);
7173           sub1node->cd();
7174           //
7175           // Place copy #19 of ITS6 in I569
7176           //
7177           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-23.4597,"rot532");
7178           sub2node->SetLineColor(kColorITS);
7179           sub2node->SetVisibility(1);   
7180           //fNodes->Add(sub2node);
7181           sub1node->cd();
7182           //
7183           // Place copy #20 of ITS6 in I569
7184           //
7185           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-27.3697,"");
7186           sub2node->SetLineColor(kColorITS);
7187           sub2node->SetVisibility(1);
7188           //fNodes->Add(sub2node);
7189           sub1node->cd();
7190           //
7191           // Place copy #21 of ITS6 in I569
7192           //
7193           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-31.2797,"rot532");
7194           sub2node->SetLineColor(kColorITS);
7195           sub2node->SetVisibility(1);
7196           //fNodes->Add(sub2node);
7197           sub1node->cd();
7198           //
7199           // Place copy #22 of ITS6 in I569
7200           //
7201           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-35.1897,"");
7202           sub2node->SetLineColor(kColorITS);
7203           sub2node->SetVisibility(1);
7204           //fNodes->Add(sub2node);
7205           sub1node->cd();
7206           //
7207           // Place copy #23 of ITS6 in I569
7208           //
7209           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-39.0997,"");
7210           sub2node->SetLineColor(kColorITS);
7211           sub2node->SetVisibility(1);
7212           //fNodes->Add(sub2node);
7213           sub1node->cd();
7214           //
7215           // Place copy #24 of ITS6 in I569
7216           //
7217           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-43.0097,"");
7218           sub2node->SetLineColor(kColorITS);
7219           sub2node->SetVisibility(1); 
7220           //fNodes->Add(sub2node);
7221           sub1node->cd();
7222           //
7223           // Place copy #25 of ITS6 in I569
7224           //
7225           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-46.9197,"rot532");
7226           sub2node->SetLineColor(kColorITS);
7227           sub2node->SetVisibility(1);
7228           //fNodes->Add(sub2node);
7229           sub1node->cd();                                                                                                                                                                                         
7230        //fNodes->Add(sub1node);
7231        node->cd();
7232        //
7233        // Place copy #3 of I569 in IT56
7234        //
7235        sub1node = new TNode("I569","I569","I569",-26.7459,34.3631,0.,"rot555");
7236        sub1node->SetLineColor(kColorITS);
7237        sub1node->SetVisibility(0);
7238        sub1node->cd();
7239           //
7240           // Place copy #1 of ITS6 in I569
7241           //
7242           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,46.9203,"rot532");
7243           sub2node->SetLineColor(kColorITS);
7244           sub2node->SetVisibility(1);
7245           //fNodes->Add(sub2node);
7246           sub1node->cd();
7247           //
7248           // Place copy #2 of ITS6 in I569
7249           //
7250           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,43.0103,"");
7251           sub2node->SetLineColor(kColorITS);
7252           sub2node->SetVisibility(1);
7253           //fNodes->Add(sub2node);
7254           sub1node->cd();
7255           //
7256           // Place copy #3 of ITS6 in I569
7257           //
7258           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,39.1003,"rot532");
7259           sub2node->SetLineColor(kColorITS);
7260           sub2node->SetVisibility(1);
7261           //fNodes->Add(sub2node);
7262           sub1node->cd();
7263           //
7264           // Place copy #4 of ITS6 in I569
7265           //
7266           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,35.1903,"");
7267           sub2node->SetLineColor(kColorITS);
7268           sub2node->SetVisibility(1);  
7269           //fNodes->Add(sub2node);
7270           sub1node->cd();
7271           //
7272           // Place copy #5 of ITS6 in I569
7273           //
7274           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,31.2803,"rot532");
7275           sub2node->SetLineColor(kColorITS);
7276           sub2node->SetVisibility(1);
7277           //fNodes->Add(sub2node);
7278           sub1node->cd();
7279           //
7280           // Place copy #6 of ITS6 in I569
7281           //
7282           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,27.3703,"");
7283           sub2node->SetLineColor(kColorITS);
7284           sub2node->SetVisibility(1);
7285           //fNodes->Add(sub2node);
7286           sub1node->cd();
7287           //
7288           // Place copy #7 of ITS6 in I569
7289           //
7290           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,23.4603,"rot532");
7291           sub2node->SetLineColor(kColorITS);
7292           sub2node->SetVisibility(1);   
7293           //fNodes->Add(sub2node);
7294           sub1node->cd();
7295           //
7296           // Place copy #8 of ITS6 in I569
7297           //
7298           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,19.5503,"");
7299           sub2node->SetLineColor(kColorITS);
7300           sub2node->SetVisibility(1);
7301           //fNodes->Add(sub2node);
7302           sub1node->cd();
7303           //
7304           // Place copy #9 of ITS6 in I569
7305           //
7306           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,15.6403,"rot532");
7307           sub2node->SetLineColor(kColorITS);
7308           sub2node->SetVisibility(1);  
7309           //fNodes->Add(sub2node);
7310           sub1node->cd();
7311           //
7312           // Place copy #10 of ITS6 in I569
7313           //
7314           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,11.7303,"");
7315           sub2node->SetLineColor(kColorITS);
7316           sub2node->SetVisibility(1);
7317           //fNodes->Add(sub2node);
7318           sub1node->cd();
7319           //
7320           // Place copy #11 of ITS6 in I569
7321           //
7322           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,7.8203,"rot532");
7323           sub2node->SetLineColor(kColorITS);
7324           sub2node->SetVisibility(1);
7325           //fNodes->Add(sub2node);
7326           sub1node->cd();
7327           //
7328           // Place copy #12 of ITS6 in I569
7329           //
7330           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,3.9103,"");
7331           sub2node->SetLineColor(kColorITS);
7332           sub2node->SetVisibility(1);
7333           //fNodes->Add(sub2node);
7334           sub1node->cd();
7335           //
7336           // Place copy #13 of ITS6 in I569
7337           //
7338           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,0.0003,"");
7339           sub2node->SetLineColor(kColorITS);
7340           sub2node->SetVisibility(1);  
7341           //fNodes->Add(sub2node);
7342           sub1node->cd();
7343           //
7344           // Place copy #14 of ITS6 in I569
7345           //
7346           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-3.9097,"");
7347           sub2node->SetLineColor(kColorITS);
7348           sub2node->SetVisibility(1);
7349           //fNodes->Add(sub2node);
7350           sub1node->cd();
7351           //
7352           // Place copy #15 of ITS6 in I569
7353           //
7354           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-7.8197,"rot532");
7355           sub2node->SetLineColor(kColorITS);
7356           sub2node->SetVisibility(1);
7357           //fNodes->Add(sub2node);
7358           sub1node->cd();
7359           //
7360           // Place copy #16 of ITS6 in I569
7361           //
7362           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-11.7297,"");
7363           sub2node->SetLineColor(kColorITS);
7364           sub2node->SetVisibility(1);
7365           //fNodes->Add(sub2node);
7366           sub1node->cd();
7367           //
7368           // Place copy #17 of ITS6 in I569
7369           //
7370           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-15.6397,"");
7371           sub2node->SetLineColor(kColorITS);
7372           sub2node->SetVisibility(1);
7373           //fNodes->Add(sub2node);
7374           sub1node->cd();
7375           //
7376           // Place copy #18 of ITS6 in I569
7377           //
7378           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-19.5497,"");
7379           sub2node->SetLineColor(kColorITS);
7380           sub2node->SetVisibility(1);
7381           //fNodes->Add(sub2node);
7382           sub1node->cd();
7383           //
7384           // Place copy #19 of ITS6 in I569
7385           //
7386           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-23.4597,"rot532");
7387           sub2node->SetLineColor(kColorITS);
7388           sub2node->SetVisibility(1);   
7389           //fNodes->Add(sub2node);
7390           sub1node->cd();
7391           //
7392           // Place copy #20 of ITS6 in I569
7393           //
7394           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-27.3697,"");
7395           sub2node->SetLineColor(kColorITS);
7396           sub2node->SetVisibility(1);
7397           //fNodes->Add(sub2node);
7398           sub1node->cd();
7399           //
7400           // Place copy #21 of ITS6 in I569
7401           //
7402           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-31.2797,"rot532");
7403           sub2node->SetLineColor(kColorITS);
7404           sub2node->SetVisibility(1);
7405           //fNodes->Add(sub2node);
7406           sub1node->cd();
7407           //
7408           // Place copy #22 of ITS6 in I569
7409           //
7410           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-35.1897,"");
7411           sub2node->SetLineColor(kColorITS);
7412           sub2node->SetVisibility(1);
7413           //fNodes->Add(sub2node);
7414           sub1node->cd();
7415           //
7416           // Place copy #23 of ITS6 in I569
7417           //
7418           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-39.0997,"");
7419           sub2node->SetLineColor(kColorITS);
7420           sub2node->SetVisibility(1);
7421           //fNodes->Add(sub2node);
7422           sub1node->cd();
7423           //
7424           // Place copy #24 of ITS6 in I569
7425           //
7426           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-43.0097,"");
7427           sub2node->SetLineColor(kColorITS);
7428           sub2node->SetVisibility(1); 
7429           //fNodes->Add(sub2node);
7430           sub1node->cd();
7431           //
7432           // Place copy #25 of ITS6 in I569
7433           //
7434           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-46.9197,"rot532");
7435           sub2node->SetLineColor(kColorITS);
7436           sub2node->SetVisibility(1);
7437           //fNodes->Add(sub2node);
7438           sub1node->cd();                                                                                                                                                                                         
7439        //fNodes->Add(sub1node);
7440        node->cd();
7441        //
7442        // Place copy #4 of I569 in IT56
7443        //
7444        sub1node = new TNode("I569","I569","I569",-32.1494,29.5956,0.,"rot556");
7445        sub1node->SetLineColor(kColorITS);
7446        sub1node->SetVisibility(0);
7447        sub1node->cd();
7448           //
7449           // Place copy #1 of ITS6 in I569
7450           //
7451           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,46.9203,"rot532");
7452           sub2node->SetLineColor(kColorITS);
7453           sub2node->SetVisibility(1);
7454           //fNodes->Add(sub2node);
7455           sub1node->cd();
7456           //
7457           // Place copy #2 of ITS6 in I569
7458           //
7459           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,43.0103,"");
7460           sub2node->SetLineColor(kColorITS);
7461           sub2node->SetVisibility(1);
7462           //fNodes->Add(sub2node);
7463           sub1node->cd();
7464           //
7465           // Place copy #3 of ITS6 in I569
7466           //
7467           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,39.1003,"rot532");
7468           sub2node->SetLineColor(kColorITS);
7469           sub2node->SetVisibility(1);
7470           //fNodes->Add(sub2node);
7471           sub1node->cd();
7472           //
7473           // Place copy #4 of ITS6 in I569
7474           //
7475           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,35.1903,"");
7476           sub2node->SetLineColor(kColorITS);
7477           sub2node->SetVisibility(1);  
7478           //fNodes->Add(sub2node);
7479           sub1node->cd();
7480           //
7481           // Place copy #5 of ITS6 in I569
7482           //
7483           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,31.2803,"rot532");
7484           sub2node->SetLineColor(kColorITS);
7485           sub2node->SetVisibility(1);
7486           //fNodes->Add(sub2node);
7487           sub1node->cd();
7488           //
7489           // Place copy #6 of ITS6 in I569
7490           //
7491           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,27.3703,"");
7492           sub2node->SetLineColor(kColorITS);
7493           sub2node->SetVisibility(1);
7494           //fNodes->Add(sub2node);
7495           sub1node->cd();
7496           //
7497           // Place copy #7 of ITS6 in I569
7498           //
7499           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,23.4603,"rot532");
7500           sub2node->SetLineColor(kColorITS);
7501           sub2node->SetVisibility(1);   
7502           //fNodes->Add(sub2node);
7503           sub1node->cd();
7504           //
7505           // Place copy #8 of ITS6 in I569
7506           //
7507           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,19.5503,"");
7508           sub2node->SetLineColor(kColorITS);
7509           sub2node->SetVisibility(1);
7510           //fNodes->Add(sub2node);
7511           sub1node->cd();
7512           //
7513           // Place copy #9 of ITS6 in I569
7514           //
7515           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,15.6403,"rot532");
7516           sub2node->SetLineColor(kColorITS);
7517           sub2node->SetVisibility(1);  
7518           //fNodes->Add(sub2node);
7519           sub1node->cd();
7520           //
7521           // Place copy #10 of ITS6 in I569
7522           //
7523           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,11.7303,"");
7524           sub2node->SetLineColor(kColorITS);
7525           sub2node->SetVisibility(1);
7526           //fNodes->Add(sub2node);
7527           sub1node->cd();
7528           //
7529           // Place copy #11 of ITS6 in I569
7530           //
7531           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,7.8203,"rot532");
7532           sub2node->SetLineColor(kColorITS);
7533           sub2node->SetVisibility(1);
7534           //fNodes->Add(sub2node);
7535           sub1node->cd();
7536           //
7537           // Place copy #12 of ITS6 in I569
7538           //
7539           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,3.9103,"");
7540           sub2node->SetLineColor(kColorITS);
7541           sub2node->SetVisibility(1);
7542           //fNodes->Add(sub2node);
7543           sub1node->cd();
7544           //
7545           // Place copy #13 of ITS6 in I569
7546           //
7547           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,0.0003,"");
7548           sub2node->SetLineColor(kColorITS);
7549           sub2node->SetVisibility(1);  
7550           //fNodes->Add(sub2node);
7551           sub1node->cd();
7552           //
7553           // Place copy #14 of ITS6 in I569
7554           //
7555           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-3.9097,"");
7556           sub2node->SetLineColor(kColorITS);
7557           sub2node->SetVisibility(1);
7558           //fNodes->Add(sub2node);
7559           sub1node->cd();
7560           //
7561           // Place copy #15 of ITS6 in I569
7562           //
7563           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-7.8197,"rot532");
7564           sub2node->SetLineColor(kColorITS);
7565           sub2node->SetVisibility(1);
7566           //fNodes->Add(sub2node);
7567           sub1node->cd();
7568           //
7569           // Place copy #16 of ITS6 in I569
7570           //
7571           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-11.7297,"");
7572           sub2node->SetLineColor(kColorITS);
7573           sub2node->SetVisibility(1);
7574           //fNodes->Add(sub2node);
7575           sub1node->cd();
7576           //
7577           // Place copy #17 of ITS6 in I569
7578           //
7579           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-15.6397,"");
7580           sub2node->SetLineColor(kColorITS);
7581           sub2node->SetVisibility(1);
7582           //fNodes->Add(sub2node);
7583           sub1node->cd();
7584           //
7585           // Place copy #18 of ITS6 in I569
7586           //
7587           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-19.5497,"");
7588           sub2node->SetLineColor(kColorITS);
7589           sub2node->SetVisibility(1);
7590           //fNodes->Add(sub2node);
7591           sub1node->cd();
7592           //
7593           // Place copy #19 of ITS6 in I569
7594           //
7595           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-23.4597,"rot532");
7596           sub2node->SetLineColor(kColorITS);
7597           sub2node->SetVisibility(1);   
7598           //fNodes->Add(sub2node);
7599           sub1node->cd();
7600           //
7601           // Place copy #20 of ITS6 in I569
7602           //
7603           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-27.3697,"");
7604           sub2node->SetLineColor(kColorITS);
7605           sub2node->SetVisibility(1);
7606           //fNodes->Add(sub2node);
7607           sub1node->cd();
7608           //
7609           // Place copy #21 of ITS6 in I569
7610           //
7611           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-31.2797,"rot532");
7612           sub2node->SetLineColor(kColorITS);
7613           sub2node->SetVisibility(1);
7614           //fNodes->Add(sub2node);
7615           sub1node->cd();
7616           //
7617           // Place copy #22 of ITS6 in I569
7618           //
7619           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-35.1897,"");
7620           sub2node->SetLineColor(kColorITS);
7621           sub2node->SetVisibility(1);
7622           //fNodes->Add(sub2node);
7623           sub1node->cd();
7624           //
7625           // Place copy #23 of ITS6 in I569
7626           //
7627           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-39.0997,"");
7628           sub2node->SetLineColor(kColorITS);
7629           sub2node->SetVisibility(1);
7630           //fNodes->Add(sub2node);
7631           sub1node->cd();
7632           //
7633           // Place copy #24 of ITS6 in I569
7634           //
7635           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-43.0097,"");
7636           sub2node->SetLineColor(kColorITS);
7637           sub2node->SetVisibility(1); 
7638           //fNodes->Add(sub2node);
7639           sub1node->cd();
7640           //
7641           // Place copy #25 of ITS6 in I569
7642           //
7643           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-46.9197,"rot532");
7644           sub2node->SetLineColor(kColorITS);
7645           sub2node->SetVisibility(1);
7646           //fNodes->Add(sub2node);
7647           sub1node->cd();                                                                                                                                                                                         
7648        //fNodes->Add(sub1node);
7649        node->cd();
7650        //
7651        // Place copy #5 of I569 in IT56
7652        //
7653        sub1node = new TNode("I569","I569","I569",-36.4544,23.8169,0.,"rot557");
7654        sub1node->SetLineColor(kColorITS);
7655        sub1node->SetVisibility(0);
7656        sub1node->cd();
7657           //
7658           // Place copy #1 of ITS6 in I569
7659           //
7660           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,46.9203,"rot532");
7661           sub2node->SetLineColor(kColorITS);
7662           sub2node->SetVisibility(1);
7663           //fNodes->Add(sub2node);
7664           sub1node->cd();
7665           //
7666           // Place copy #2 of ITS6 in I569
7667           //
7668           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,43.0103,"");
7669           sub2node->SetLineColor(kColorITS);
7670           sub2node->SetVisibility(1);
7671           //fNodes->Add(sub2node);
7672           sub1node->cd();
7673           //
7674           // Place copy #3 of ITS6 in I569
7675           //
7676           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,39.1003,"rot532");
7677           sub2node->SetLineColor(kColorITS);
7678           sub2node->SetVisibility(1);
7679           //fNodes->Add(sub2node);
7680           sub1node->cd();
7681           //
7682           // Place copy #4 of ITS6 in I569
7683           //
7684           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,35.1903,"");
7685           sub2node->SetLineColor(kColorITS);
7686           sub2node->SetVisibility(1);  
7687           //fNodes->Add(sub2node);
7688           sub1node->cd();
7689           //
7690           // Place copy #5 of ITS6 in I569
7691           //
7692           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,31.2803,"rot532");
7693           sub2node->SetLineColor(kColorITS);
7694           sub2node->SetVisibility(1);
7695           //fNodes->Add(sub2node);
7696           sub1node->cd();
7697           //
7698           // Place copy #6 of ITS6 in I569
7699           //
7700           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,27.3703,"");
7701           sub2node->SetLineColor(kColorITS);
7702           sub2node->SetVisibility(1);
7703           //fNodes->Add(sub2node);
7704           sub1node->cd();
7705           //
7706           // Place copy #7 of ITS6 in I569
7707           //
7708           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,23.4603,"rot532");
7709           sub2node->SetLineColor(kColorITS);
7710           sub2node->SetVisibility(1);   
7711           //fNodes->Add(sub2node);
7712           sub1node->cd();
7713           //
7714           // Place copy #8 of ITS6 in I569
7715           //
7716           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,19.5503,"");
7717           sub2node->SetLineColor(kColorITS);
7718           sub2node->SetVisibility(1);
7719           //fNodes->Add(sub2node);
7720           sub1node->cd();
7721           //
7722           // Place copy #9 of ITS6 in I569
7723           //
7724           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,15.6403,"rot532");
7725           sub2node->SetLineColor(kColorITS);
7726           sub2node->SetVisibility(1);  
7727           //fNodes->Add(sub2node);
7728           sub1node->cd();
7729           //
7730           // Place copy #10 of ITS6 in I569
7731           //
7732           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,11.7303,"");
7733           sub2node->SetLineColor(kColorITS);
7734           sub2node->SetVisibility(1);
7735           //fNodes->Add(sub2node);
7736           sub1node->cd();
7737           //
7738           // Place copy #11 of ITS6 in I569
7739           //
7740           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,7.8203,"rot532");
7741           sub2node->SetLineColor(kColorITS);
7742           sub2node->SetVisibility(1);
7743           //fNodes->Add(sub2node);
7744           sub1node->cd();
7745           //
7746           // Place copy #12 of ITS6 in I569
7747           //
7748           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,3.9103,"");
7749           sub2node->SetLineColor(kColorITS);
7750           sub2node->SetVisibility(1);
7751           //fNodes->Add(sub2node);
7752           sub1node->cd();
7753           //
7754           // Place copy #13 of ITS6 in I569
7755           //
7756           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,0.0003,"");
7757           sub2node->SetLineColor(kColorITS);
7758           sub2node->SetVisibility(1);  
7759           //fNodes->Add(sub2node);
7760           sub1node->cd();
7761           //
7762           // Place copy #14 of ITS6 in I569
7763           //
7764           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-3.9097,"");
7765           sub2node->SetLineColor(kColorITS);
7766           sub2node->SetVisibility(1);
7767           //fNodes->Add(sub2node);
7768           sub1node->cd();
7769           //
7770           // Place copy #15 of ITS6 in I569
7771           //
7772           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-7.8197,"rot532");
7773           sub2node->SetLineColor(kColorITS);
7774           sub2node->SetVisibility(1);
7775           //fNodes->Add(sub2node);
7776           sub1node->cd();
7777           //
7778           // Place copy #16 of ITS6 in I569
7779           //
7780           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-11.7297,"");
7781           sub2node->SetLineColor(kColorITS);
7782           sub2node->SetVisibility(1);
7783           //fNodes->Add(sub2node);
7784           sub1node->cd();
7785           //
7786           // Place copy #17 of ITS6 in I569
7787           //
7788           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-15.6397,"");
7789           sub2node->SetLineColor(kColorITS);
7790           sub2node->SetVisibility(1);
7791           //fNodes->Add(sub2node);
7792           sub1node->cd();
7793           //
7794           // Place copy #18 of ITS6 in I569
7795           //
7796           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-19.5497,"");
7797           sub2node->SetLineColor(kColorITS);
7798           sub2node->SetVisibility(1);
7799           //fNodes->Add(sub2node);
7800           sub1node->cd();
7801           //
7802           // Place copy #19 of ITS6 in I569
7803           //
7804           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-23.4597,"rot532");
7805           sub2node->SetLineColor(kColorITS);
7806           sub2node->SetVisibility(1);   
7807           //fNodes->Add(sub2node);
7808           sub1node->cd();
7809           //
7810           // Place copy #20 of ITS6 in I569
7811           //
7812           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-27.3697,"");
7813           sub2node->SetLineColor(kColorITS);
7814           sub2node->SetVisibility(1);
7815           //fNodes->Add(sub2node);
7816           sub1node->cd();
7817           //
7818           // Place copy #21 of ITS6 in I569
7819           //
7820           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-31.2797,"rot532");
7821           sub2node->SetLineColor(kColorITS);
7822           sub2node->SetVisibility(1);
7823           //fNodes->Add(sub2node);
7824           sub1node->cd();
7825           //
7826           // Place copy #22 of ITS6 in I569
7827           //
7828           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-35.1897,"");
7829           sub2node->SetLineColor(kColorITS);
7830           sub2node->SetVisibility(1);
7831           //fNodes->Add(sub2node);
7832           sub1node->cd();
7833           //
7834           // Place copy #23 of ITS6 in I569
7835           //
7836           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-39.0997,"");
7837           sub2node->SetLineColor(kColorITS);
7838           sub2node->SetVisibility(1);
7839           //fNodes->Add(sub2node);
7840           sub1node->cd();
7841           //
7842           // Place copy #24 of ITS6 in I569
7843           //
7844           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-43.0097,"");
7845           sub2node->SetLineColor(kColorITS);
7846           sub2node->SetVisibility(1); 
7847           //fNodes->Add(sub2node);
7848           sub1node->cd();
7849           //
7850           // Place copy #25 of ITS6 in I569
7851           //
7852           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-46.9197,"rot532");
7853           sub2node->SetLineColor(kColorITS);
7854           sub2node->SetVisibility(1);
7855           //fNodes->Add(sub2node);
7856           sub1node->cd();                                                                                                                                                                                         
7857        //fNodes->Add(sub1node);
7858        node->cd();
7859        //
7860        // Place copy #6 of I569 in IT56
7861        //
7862        sub1node = new TNode("I569","I569","I569",-40.0172,17.5532,0.,"rot558");
7863        sub1node->SetLineColor(kColorITS);
7864        sub1node->SetVisibility(0);
7865        sub1node->cd();
7866           //
7867           // Place copy #1 of ITS6 in I569
7868           //
7869           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,46.9203,"rot532");
7870           sub2node->SetLineColor(kColorITS);
7871           sub2node->SetVisibility(1);
7872           //fNodes->Add(sub2node);
7873           sub1node->cd();
7874           //
7875           // Place copy #2 of ITS6 in I569
7876           //
7877           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,43.0103,"");
7878           sub2node->SetLineColor(kColorITS);
7879           sub2node->SetVisibility(1);
7880           //fNodes->Add(sub2node);
7881           sub1node->cd();
7882           //
7883           // Place copy #3 of ITS6 in I569
7884           //
7885           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,39.1003,"rot532");
7886           sub2node->SetLineColor(kColorITS);
7887           sub2node->SetVisibility(1);
7888           //fNodes->Add(sub2node);
7889           sub1node->cd();
7890           //
7891           // Place copy #4 of ITS6 in I569
7892           //
7893           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,35.1903,"");
7894           sub2node->SetLineColor(kColorITS);
7895           sub2node->SetVisibility(1);  
7896           //fNodes->Add(sub2node);
7897           sub1node->cd();
7898           //
7899           // Place copy #5 of ITS6 in I569
7900           //
7901           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,31.2803,"rot532");
7902           sub2node->SetLineColor(kColorITS);
7903           sub2node->SetVisibility(1);
7904           //fNodes->Add(sub2node);
7905           sub1node->cd();
7906           //
7907           // Place copy #6 of ITS6 in I569
7908           //
7909           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,27.3703,"");
7910           sub2node->SetLineColor(kColorITS);
7911           sub2node->SetVisibility(1);
7912           //fNodes->Add(sub2node);
7913           sub1node->cd();
7914           //
7915           // Place copy #7 of ITS6 in I569
7916           //
7917           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,23.4603,"rot532");
7918           sub2node->SetLineColor(kColorITS);
7919           sub2node->SetVisibility(1);   
7920           //fNodes->Add(sub2node);
7921           sub1node->cd();
7922           //
7923           // Place copy #8 of ITS6 in I569
7924           //
7925           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,19.5503,"");
7926           sub2node->SetLineColor(kColorITS);
7927           sub2node->SetVisibility(1);
7928           //fNodes->Add(sub2node);
7929           sub1node->cd();
7930           //
7931           // Place copy #9 of ITS6 in I569
7932           //
7933           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,15.6403,"rot532");
7934           sub2node->SetLineColor(kColorITS);
7935           sub2node->SetVisibility(1);  
7936           //fNodes->Add(sub2node);
7937           sub1node->cd();
7938           //
7939           // Place copy #10 of ITS6 in I569
7940           //
7941           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,11.7303,"");
7942           sub2node->SetLineColor(kColorITS);
7943           sub2node->SetVisibility(1);
7944           //fNodes->Add(sub2node);
7945           sub1node->cd();
7946           //
7947           // Place copy #11 of ITS6 in I569
7948           //
7949           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,7.8203,"rot532");
7950           sub2node->SetLineColor(kColorITS);
7951           sub2node->SetVisibility(1);
7952           //fNodes->Add(sub2node);
7953           sub1node->cd();
7954           //
7955           // Place copy #12 of ITS6 in I569
7956           //
7957           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,3.9103,"");
7958           sub2node->SetLineColor(kColorITS);
7959           sub2node->SetVisibility(1);
7960           //fNodes->Add(sub2node);
7961           sub1node->cd();
7962           //
7963           // Place copy #13 of ITS6 in I569
7964           //
7965           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,0.0003,"");
7966           sub2node->SetLineColor(kColorITS);
7967           sub2node->SetVisibility(1);  
7968           //fNodes->Add(sub2node);
7969           sub1node->cd();
7970           //
7971           // Place copy #14 of ITS6 in I569
7972           //
7973           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-3.9097,"");
7974           sub2node->SetLineColor(kColorITS);
7975           sub2node->SetVisibility(1);
7976           //fNodes->Add(sub2node);
7977           sub1node->cd();
7978           //
7979           // Place copy #15 of ITS6 in I569
7980           //
7981           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-7.8197,"rot532");
7982           sub2node->SetLineColor(kColorITS);
7983           sub2node->SetVisibility(1);
7984           //fNodes->Add(sub2node);
7985           sub1node->cd();
7986           //
7987           // Place copy #16 of ITS6 in I569
7988           //
7989           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-11.7297,"");
7990           sub2node->SetLineColor(kColorITS);
7991           sub2node->SetVisibility(1);
7992           //fNodes->Add(sub2node);
7993           sub1node->cd();
7994           //
7995           // Place copy #17 of ITS6 in I569
7996           //
7997           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-15.6397,"");
7998           sub2node->SetLineColor(kColorITS);
7999           sub2node->SetVisibility(1);
8000           //fNodes->Add(sub2node);
8001           sub1node->cd();
8002           //
8003           // Place copy #18 of ITS6 in I569
8004           //
8005           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-19.5497,"");
8006           sub2node->SetLineColor(kColorITS);
8007           sub2node->SetVisibility(1);
8008           //fNodes->Add(sub2node);
8009           sub1node->cd();
8010           //
8011           // Place copy #19 of ITS6 in I569
8012           //
8013           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-23.4597,"rot532");
8014           sub2node->SetLineColor(kColorITS);
8015           sub2node->SetVisibility(1);   
8016           //fNodes->Add(sub2node);
8017           sub1node->cd();
8018           //
8019           // Place copy #20 of ITS6 in I569
8020           //
8021           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-27.3697,"");
8022           sub2node->SetLineColor(kColorITS);
8023           sub2node->SetVisibility(1);
8024           //fNodes->Add(sub2node);
8025           sub1node->cd();
8026           //
8027           // Place copy #21 of ITS6 in I569
8028           //
8029           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-31.2797,"rot532");
8030           sub2node->SetLineColor(kColorITS);
8031           sub2node->SetVisibility(1);
8032           //fNodes->Add(sub2node);
8033           sub1node->cd();
8034           //
8035           // Place copy #22 of ITS6 in I569
8036           //
8037           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-35.1897,"");
8038           sub2node->SetLineColor(kColorITS);
8039           sub2node->SetVisibility(1);
8040           //fNodes->Add(sub2node);
8041           sub1node->cd();
8042           //
8043           // Place copy #23 of ITS6 in I569
8044           //
8045           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-39.0997,"");
8046           sub2node->SetLineColor(kColorITS);
8047           sub2node->SetVisibility(1);
8048           //fNodes->Add(sub2node);
8049           sub1node->cd();
8050           //
8051           // Place copy #24 of ITS6 in I569
8052           //
8053           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-43.0097,"");
8054           sub2node->SetLineColor(kColorITS);
8055           sub2node->SetVisibility(1); 
8056           //fNodes->Add(sub2node);
8057           sub1node->cd();
8058           //
8059           // Place copy #25 of ITS6 in I569
8060           //
8061           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-46.9197,"rot532");
8062           sub2node->SetLineColor(kColorITS);
8063           sub2node->SetVisibility(1);
8064           //fNodes->Add(sub2node);
8065           sub1node->cd();                                                                                                                                                                                         
8066        //fNodes->Add(sub1node);
8067        node->cd();
8068        //
8069        // Place copy #7 of I569 in IT56
8070        //
8071        sub1node = new TNode("I569","I569","I569",-42.2125,10.6897,0.,"rot559");
8072        sub1node->SetLineColor(kColorITS);
8073        sub1node->SetVisibility(0);
8074        sub1node->cd();
8075           //
8076           // Place copy #1 of ITS6 in I569
8077           //
8078           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,46.9203,"rot532");
8079           sub2node->SetLineColor(kColorITS);
8080           sub2node->SetVisibility(1);
8081           //fNodes->Add(sub2node);
8082           sub1node->cd();
8083           //
8084           // Place copy #2 of ITS6 in I569
8085           //
8086           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,43.0103,"");
8087           sub2node->SetLineColor(kColorITS);
8088           sub2node->SetVisibility(1);
8089           //fNodes->Add(sub2node);
8090           sub1node->cd();
8091           //
8092           // Place copy #3 of ITS6 in I569
8093           //
8094           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,39.1003,"rot532");
8095           sub2node->SetLineColor(kColorITS);
8096           sub2node->SetVisibility(1);
8097           //fNodes->Add(sub2node);
8098           sub1node->cd();
8099           //
8100           // Place copy #4 of ITS6 in I569
8101           //
8102           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,35.1903,"");
8103           sub2node->SetLineColor(kColorITS);
8104           sub2node->SetVisibility(1);  
8105           //fNodes->Add(sub2node);
8106           sub1node->cd();
8107           //
8108           // Place copy #5 of ITS6 in I569
8109           //
8110           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,31.2803,"rot532");
8111           sub2node->SetLineColor(kColorITS);
8112           sub2node->SetVisibility(1);
8113           //fNodes->Add(sub2node);
8114           sub1node->cd();
8115           //
8116           // Place copy #6 of ITS6 in I569
8117           //
8118           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,27.3703,"");
8119           sub2node->SetLineColor(kColorITS);
8120           sub2node->SetVisibility(1);
8121           //fNodes->Add(sub2node);
8122           sub1node->cd();
8123           //
8124           // Place copy #7 of ITS6 in I569
8125           //
8126           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,23.4603,"rot532");
8127           sub2node->SetLineColor(kColorITS);
8128           sub2node->SetVisibility(1);   
8129           //fNodes->Add(sub2node);
8130           sub1node->cd();
8131           //
8132           // Place copy #8 of ITS6 in I569
8133           //
8134           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,19.5503,"");
8135           sub2node->SetLineColor(kColorITS);
8136           sub2node->SetVisibility(1);
8137           //fNodes->Add(sub2node);
8138           sub1node->cd();
8139           //
8140           // Place copy #9 of ITS6 in I569
8141           //
8142           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,15.6403,"rot532");
8143           sub2node->SetLineColor(kColorITS);
8144           sub2node->SetVisibility(1);  
8145           //fNodes->Add(sub2node);
8146           sub1node->cd();
8147           //
8148           // Place copy #10 of ITS6 in I569
8149           //
8150           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,11.7303,"");
8151           sub2node->SetLineColor(kColorITS);
8152           sub2node->SetVisibility(1);
8153           //fNodes->Add(sub2node);
8154           sub1node->cd();
8155           //
8156           // Place copy #11 of ITS6 in I569
8157           //
8158           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,7.8203,"rot532");
8159           sub2node->SetLineColor(kColorITS);
8160           sub2node->SetVisibility(1);
8161           //fNodes->Add(sub2node);
8162           sub1node->cd();
8163           //
8164           // Place copy #12 of ITS6 in I569
8165           //
8166           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,3.9103,"");
8167           sub2node->SetLineColor(kColorITS);
8168           sub2node->SetVisibility(1);
8169           //fNodes->Add(sub2node);
8170           sub1node->cd();
8171           //
8172           // Place copy #13 of ITS6 in I569
8173           //
8174           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,0.0003,"");
8175           sub2node->SetLineColor(kColorITS);
8176           sub2node->SetVisibility(1);  
8177           //fNodes->Add(sub2node);
8178           sub1node->cd();
8179           //
8180           // Place copy #14 of ITS6 in I569
8181           //
8182           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-3.9097,"");
8183           sub2node->SetLineColor(kColorITS);
8184           sub2node->SetVisibility(1);
8185           //fNodes->Add(sub2node);
8186           sub1node->cd();
8187           //
8188           // Place copy #15 of ITS6 in I569
8189           //
8190           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-7.8197,"rot532");
8191           sub2node->SetLineColor(kColorITS);
8192           sub2node->SetVisibility(1);
8193           //fNodes->Add(sub2node);
8194           sub1node->cd();
8195           //
8196           // Place copy #16 of ITS6 in I569
8197           //
8198           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-11.7297,"");
8199           sub2node->SetLineColor(kColorITS);
8200           sub2node->SetVisibility(1);
8201           //fNodes->Add(sub2node);
8202           sub1node->cd();
8203           //
8204           // Place copy #17 of ITS6 in I569
8205           //
8206           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-15.6397,"");
8207           sub2node->SetLineColor(kColorITS);
8208           sub2node->SetVisibility(1);
8209           //fNodes->Add(sub2node);
8210           sub1node->cd();
8211           //
8212           // Place copy #18 of ITS6 in I569
8213           //
8214           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-19.5497,"");
8215           sub2node->SetLineColor(kColorITS);
8216           sub2node->SetVisibility(1);
8217           //fNodes->Add(sub2node);
8218           sub1node->cd();
8219           //
8220           // Place copy #19 of ITS6 in I569
8221           //
8222           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-23.4597,"rot532");
8223           sub2node->SetLineColor(kColorITS);
8224           sub2node->SetVisibility(1);   
8225           //fNodes->Add(sub2node);
8226           sub1node->cd();
8227           //
8228           // Place copy #20 of ITS6 in I569
8229           //
8230           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-27.3697,"");
8231           sub2node->SetLineColor(kColorITS);
8232           sub2node->SetVisibility(1);
8233           //fNodes->Add(sub2node);
8234           sub1node->cd();
8235           //
8236           // Place copy #21 of ITS6 in I569
8237           //
8238           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-31.2797,"rot532");
8239           sub2node->SetLineColor(kColorITS);
8240           sub2node->SetVisibility(1);
8241           //fNodes->Add(sub2node);
8242           sub1node->cd();
8243           //
8244           // Place copy #22 of ITS6 in I569
8245           //
8246           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-35.1897,"");
8247           sub2node->SetLineColor(kColorITS);
8248           sub2node->SetVisibility(1);
8249           //fNodes->Add(sub2node);
8250           sub1node->cd();
8251           //
8252           // Place copy #23 of ITS6 in I569
8253           //
8254           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-39.0997,"");
8255           sub2node->SetLineColor(kColorITS);
8256           sub2node->SetVisibility(1);
8257           //fNodes->Add(sub2node);
8258           sub1node->cd();
8259           //
8260           // Place copy #24 of ITS6 in I569
8261           //
8262           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-43.0097,"");
8263           sub2node->SetLineColor(kColorITS);
8264           sub2node->SetVisibility(1); 
8265           //fNodes->Add(sub2node);
8266           sub1node->cd();
8267           //
8268           // Place copy #25 of ITS6 in I569
8269           //
8270           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-46.9197,"rot532");
8271           sub2node->SetLineColor(kColorITS);
8272           sub2node->SetVisibility(1);
8273           //fNodes->Add(sub2node);
8274           sub1node->cd();                                                                                                                                                                                         
8275        //fNodes->Add(sub1node);
8276        node->cd();
8277        //
8278        // Place copy #8 of I569 in IT56
8279        //
8280        sub1node = new TNode("I569","I569","I569",-43.5484,3.6085,0.,"rot560");
8281        sub1node->SetLineColor(kColorITS);
8282        sub1node->SetVisibility(0);
8283        sub1node->cd();
8284           //
8285           // Place copy #1 of ITS6 in I569
8286           //
8287           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,46.9203,"rot532");
8288           sub2node->SetLineColor(kColorITS);
8289           sub2node->SetVisibility(1);
8290           //fNodes->Add(sub2node);
8291           sub1node->cd();
8292           //
8293           // Place copy #2 of ITS6 in I569
8294           //
8295           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,43.0103,"");
8296           sub2node->SetLineColor(kColorITS);
8297           sub2node->SetVisibility(1);
8298           //fNodes->Add(sub2node);
8299           sub1node->cd();
8300           //
8301           // Place copy #3 of ITS6 in I569
8302           //
8303           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,39.1003,"rot532");
8304           sub2node->SetLineColor(kColorITS);
8305           sub2node->SetVisibility(1);
8306           //fNodes->Add(sub2node);
8307           sub1node->cd();
8308           //
8309           // Place copy #4 of ITS6 in I569
8310           //
8311           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,35.1903,"");
8312           sub2node->SetLineColor(kColorITS);
8313           sub2node->SetVisibility(1);  
8314           //fNodes->Add(sub2node);
8315           sub1node->cd();
8316           //
8317           // Place copy #5 of ITS6 in I569
8318           //
8319           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,31.2803,"rot532");
8320           sub2node->SetLineColor(kColorITS);
8321           sub2node->SetVisibility(1);
8322           //fNodes->Add(sub2node);
8323           sub1node->cd();
8324           //
8325           // Place copy #6 of ITS6 in I569
8326           //
8327           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,27.3703,"");
8328           sub2node->SetLineColor(kColorITS);
8329           sub2node->SetVisibility(1);
8330           //fNodes->Add(sub2node);
8331           sub1node->cd();
8332           //
8333           // Place copy #7 of ITS6 in I569
8334           //
8335           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,23.4603,"rot532");
8336           sub2node->SetLineColor(kColorITS);
8337           sub2node->SetVisibility(1);   
8338           //fNodes->Add(sub2node);
8339           sub1node->cd();
8340           //
8341           // Place copy #8 of ITS6 in I569
8342           //
8343           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,19.5503,"");
8344           sub2node->SetLineColor(kColorITS);
8345           sub2node->SetVisibility(1);
8346           //fNodes->Add(sub2node);
8347           sub1node->cd();
8348           //
8349           // Place copy #9 of ITS6 in I569
8350           //
8351           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,15.6403,"rot532");
8352           sub2node->SetLineColor(kColorITS);
8353           sub2node->SetVisibility(1);  
8354           //fNodes->Add(sub2node);
8355           sub1node->cd();
8356           //
8357           // Place copy #10 of ITS6 in I569
8358           //
8359           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,11.7303,"");
8360           sub2node->SetLineColor(kColorITS);
8361           sub2node->SetVisibility(1);
8362           //fNodes->Add(sub2node);
8363           sub1node->cd();
8364           //
8365           // Place copy #11 of ITS6 in I569
8366           //
8367           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,7.8203,"rot532");
8368           sub2node->SetLineColor(kColorITS);
8369           sub2node->SetVisibility(1);
8370           //fNodes->Add(sub2node);
8371           sub1node->cd();
8372           //
8373           // Place copy #12 of ITS6 in I569
8374           //
8375           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,3.9103,"");
8376           sub2node->SetLineColor(kColorITS);
8377           sub2node->SetVisibility(1);
8378           //fNodes->Add(sub2node);
8379           sub1node->cd();
8380           //
8381           // Place copy #13 of ITS6 in I569
8382           //
8383           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,0.0003,"");
8384           sub2node->SetLineColor(kColorITS);
8385           sub2node->SetVisibility(1);  
8386           //fNodes->Add(sub2node);
8387           sub1node->cd();
8388           //
8389           // Place copy #14 of ITS6 in I569
8390           //
8391           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-3.9097,"");
8392           sub2node->SetLineColor(kColorITS);
8393           sub2node->SetVisibility(1);
8394           //fNodes->Add(sub2node);
8395           sub1node->cd();
8396           //
8397           // Place copy #15 of ITS6 in I569
8398           //
8399           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-7.8197,"rot532");
8400           sub2node->SetLineColor(kColorITS);
8401           sub2node->SetVisibility(1);
8402           //fNodes->Add(sub2node);
8403           sub1node->cd();
8404           //
8405           // Place copy #16 of ITS6 in I569
8406           //
8407           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-11.7297,"");
8408           sub2node->SetLineColor(kColorITS);
8409           sub2node->SetVisibility(1);
8410           //fNodes->Add(sub2node);
8411           sub1node->cd();
8412           //
8413           // Place copy #17 of ITS6 in I569
8414           //
8415           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-15.6397,"");
8416           sub2node->SetLineColor(kColorITS);
8417           sub2node->SetVisibility(1);
8418           //fNodes->Add(sub2node);
8419           sub1node->cd();
8420           //
8421           // Place copy #18 of ITS6 in I569
8422           //
8423           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-19.5497,"");
8424           sub2node->SetLineColor(kColorITS);
8425           sub2node->SetVisibility(1);
8426           //fNodes->Add(sub2node);
8427           sub1node->cd();
8428           //
8429           // Place copy #19 of ITS6 in I569
8430           //
8431           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-23.4597,"rot532");
8432           sub2node->SetLineColor(kColorITS);
8433           sub2node->SetVisibility(1);   
8434           //fNodes->Add(sub2node);
8435           sub1node->cd();
8436           //
8437           // Place copy #20 of ITS6 in I569
8438           //
8439           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-27.3697,"");
8440           sub2node->SetLineColor(kColorITS);
8441           sub2node->SetVisibility(1);
8442           //fNodes->Add(sub2node);
8443           sub1node->cd();
8444           //
8445           // Place copy #21 of ITS6 in I569
8446           //
8447           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-31.2797,"rot532");
8448           sub2node->SetLineColor(kColorITS);
8449           sub2node->SetVisibility(1);
8450           //fNodes->Add(sub2node);
8451           sub1node->cd();
8452           //
8453           // Place copy #22 of ITS6 in I569
8454           //
8455           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-35.1897,"");
8456           sub2node->SetLineColor(kColorITS);
8457           sub2node->SetVisibility(1);
8458           //fNodes->Add(sub2node);
8459           sub1node->cd();
8460           //
8461           // Place copy #23 of ITS6 in I569
8462           //
8463           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-39.0997,"");
8464           sub2node->SetLineColor(kColorITS);
8465           sub2node->SetVisibility(1);
8466           //fNodes->Add(sub2node);
8467           sub1node->cd();
8468           //
8469           // Place copy #24 of ITS6 in I569
8470           //
8471           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-43.0097,"");
8472           sub2node->SetLineColor(kColorITS);
8473           sub2node->SetVisibility(1); 
8474           //fNodes->Add(sub2node);
8475           sub1node->cd();
8476           //
8477           // Place copy #25 of ITS6 in I569
8478           //
8479           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-46.9197,"rot532");
8480           sub2node->SetLineColor(kColorITS);
8481           sub2node->SetVisibility(1);
8482           //fNodes->Add(sub2node);
8483           sub1node->cd();                                                                                                                                                                                         
8484        //fNodes->Add(sub1node);
8485        node->cd();
8486        //
8487        // Place copy #9 of I569 in IT56
8488        //
8489        sub1node = new TNode("I569","I569","I569",-43.3963,-3.5959,0.,"rot561");
8490        sub1node->SetLineColor(kColorITS);
8491        sub1node->SetVisibility(0);
8492        sub1node->cd();
8493           //
8494           // Place copy #1 of ITS6 in I569
8495           //
8496           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,46.9203,"rot532");
8497           sub2node->SetLineColor(kColorITS);
8498           sub2node->SetVisibility(1);
8499           //fNodes->Add(sub2node);
8500           sub1node->cd();
8501           //
8502           // Place copy #2 of ITS6 in I569
8503           //
8504           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,43.0103,"");
8505           sub2node->SetLineColor(kColorITS);
8506           sub2node->SetVisibility(1);
8507           //fNodes->Add(sub2node);
8508           sub1node->cd();
8509           //
8510           // Place copy #3 of ITS6 in I569
8511           //
8512           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,39.1003,"rot532");
8513           sub2node->SetLineColor(kColorITS);
8514           sub2node->SetVisibility(1);
8515           //fNodes->Add(sub2node);
8516           sub1node->cd();
8517           //
8518           // Place copy #4 of ITS6 in I569
8519           //
8520           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,35.1903,"");
8521           sub2node->SetLineColor(kColorITS);
8522           sub2node->SetVisibility(1);  
8523           //fNodes->Add(sub2node);
8524           sub1node->cd();
8525           //
8526           // Place copy #5 of ITS6 in I569
8527           //
8528           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,31.2803,"rot532");
8529           sub2node->SetLineColor(kColorITS);
8530           sub2node->SetVisibility(1);
8531           //fNodes->Add(sub2node);
8532           sub1node->cd();
8533           //
8534           // Place copy #6 of ITS6 in I569
8535           //
8536           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,27.3703,"");
8537           sub2node->SetLineColor(kColorITS);
8538           sub2node->SetVisibility(1);
8539           //fNodes->Add(sub2node);
8540           sub1node->cd();
8541           //
8542           // Place copy #7 of ITS6 in I569
8543           //
8544           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,23.4603,"rot532");
8545           sub2node->SetLineColor(kColorITS);
8546           sub2node->SetVisibility(1);   
8547           //fNodes->Add(sub2node);
8548           sub1node->cd();
8549           //
8550           // Place copy #8 of ITS6 in I569
8551           //
8552           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,19.5503,"");
8553           sub2node->SetLineColor(kColorITS);
8554           sub2node->SetVisibility(1);
8555           //fNodes->Add(sub2node);
8556           sub1node->cd();
8557           //
8558           // Place copy #9 of ITS6 in I569
8559           //
8560           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,15.6403,"rot532");
8561           sub2node->SetLineColor(kColorITS);
8562           sub2node->SetVisibility(1);  
8563           //fNodes->Add(sub2node);
8564           sub1node->cd();
8565           //
8566           // Place copy #10 of ITS6 in I569
8567           //
8568           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,11.7303,"");
8569           sub2node->SetLineColor(kColorITS);
8570           sub2node->SetVisibility(1);
8571           //fNodes->Add(sub2node);
8572           sub1node->cd();
8573           //
8574           // Place copy #11 of ITS6 in I569
8575           //
8576           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,7.8203,"rot532");
8577           sub2node->SetLineColor(kColorITS);
8578           sub2node->SetVisibility(1);
8579           //fNodes->Add(sub2node);
8580           sub1node->cd();
8581           //
8582           // Place copy #12 of ITS6 in I569
8583           //
8584           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,3.9103,"");
8585           sub2node->SetLineColor(kColorITS);
8586           sub2node->SetVisibility(1);
8587           //fNodes->Add(sub2node);
8588           sub1node->cd();
8589           //
8590           // Place copy #13 of ITS6 in I569
8591           //
8592           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,0.0003,"");
8593           sub2node->SetLineColor(kColorITS);
8594           sub2node->SetVisibility(1);  
8595           //fNodes->Add(sub2node);
8596           sub1node->cd();
8597           //
8598           // Place copy #14 of ITS6 in I569
8599           //
8600           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-3.9097,"");
8601           sub2node->SetLineColor(kColorITS);
8602           sub2node->SetVisibility(1);
8603           //fNodes->Add(sub2node);
8604           sub1node->cd();
8605           //
8606           // Place copy #15 of ITS6 in I569
8607           //
8608           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-7.8197,"rot532");
8609           sub2node->SetLineColor(kColorITS);
8610           sub2node->SetVisibility(1);
8611           //fNodes->Add(sub2node);
8612           sub1node->cd();
8613           //
8614           // Place copy #16 of ITS6 in I569
8615           //
8616           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-11.7297,"");
8617           sub2node->SetLineColor(kColorITS);
8618           sub2node->SetVisibility(1);
8619           //fNodes->Add(sub2node);
8620           sub1node->cd();
8621           //
8622           // Place copy #17 of ITS6 in I569
8623           //
8624           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-15.6397,"");
8625           sub2node->SetLineColor(kColorITS);
8626           sub2node->SetVisibility(1);
8627           //fNodes->Add(sub2node);
8628           sub1node->cd();
8629           //
8630           // Place copy #18 of ITS6 in I569
8631           //
8632           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-19.5497,"");
8633           sub2node->SetLineColor(kColorITS);
8634           sub2node->SetVisibility(1);
8635           //fNodes->Add(sub2node);
8636           sub1node->cd();
8637           //
8638           // Place copy #19 of ITS6 in I569
8639           //
8640           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-23.4597,"rot532");
8641           sub2node->SetLineColor(kColorITS);
8642           sub2node->SetVisibility(1);   
8643           //fNodes->Add(sub2node);
8644           sub1node->cd();
8645           //
8646           // Place copy #20 of ITS6 in I569
8647           //
8648           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-27.3697,"");
8649           sub2node->SetLineColor(kColorITS);
8650           sub2node->SetVisibility(1);
8651           //fNodes->Add(sub2node);
8652           sub1node->cd();
8653           //
8654           // Place copy #21 of ITS6 in I569
8655           //
8656           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-31.2797,"rot532");
8657           sub2node->SetLineColor(kColorITS);
8658           sub2node->SetVisibility(1);
8659           //fNodes->Add(sub2node);
8660           sub1node->cd();
8661           //
8662           // Place copy #22 of ITS6 in I569
8663           //
8664           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-35.1897,"");
8665           sub2node->SetLineColor(kColorITS);
8666           sub2node->SetVisibility(1);
8667           //fNodes->Add(sub2node);
8668           sub1node->cd();
8669           //
8670           // Place copy #23 of ITS6 in I569
8671           //
8672           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-39.0997,"");
8673           sub2node->SetLineColor(kColorITS);
8674           sub2node->SetVisibility(1);
8675           //fNodes->Add(sub2node);
8676           sub1node->cd();
8677           //
8678           // Place copy #24 of ITS6 in I569
8679           //
8680           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-43.0097,"");
8681           sub2node->SetLineColor(kColorITS);
8682           sub2node->SetVisibility(1); 
8683           //fNodes->Add(sub2node);
8684           sub1node->cd();
8685           //
8686           // Place copy #25 of ITS6 in I569
8687           //
8688           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-46.9197,"rot532");
8689           sub2node->SetLineColor(kColorITS);
8690           sub2node->SetVisibility(1);
8691           //fNodes->Add(sub2node);
8692           sub1node->cd();                                                                                                                                                                                         
8693        //fNodes->Add(sub1node);
8694        node->cd();
8695        //
8696        // Place copy #10 of I569 in IT56
8697        //
8698        sub1node = new TNode("I569","I569","I569",-42.3606,-10.7271,0.,"rot562");
8699        sub1node->SetLineColor(kColorITS);
8700        sub1node->SetVisibility(0);
8701        sub1node->cd();
8702           //
8703           // Place copy #1 of ITS6 in I569
8704           //
8705           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,46.9203,"rot532");
8706           sub2node->SetLineColor(kColorITS);
8707           sub2node->SetVisibility(1);
8708           //fNodes->Add(sub2node);
8709           sub1node->cd();
8710           //
8711           // Place copy #2 of ITS6 in I569
8712           //
8713           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,43.0103,"");
8714           sub2node->SetLineColor(kColorITS);
8715           sub2node->SetVisibility(1);
8716           //fNodes->Add(sub2node);
8717           sub1node->cd();
8718           //
8719           // Place copy #3 of ITS6 in I569
8720           //
8721           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,39.1003,"rot532");
8722           sub2node->SetLineColor(kColorITS);
8723           sub2node->SetVisibility(1);
8724           //fNodes->Add(sub2node);
8725           sub1node->cd();
8726           //
8727           // Place copy #4 of ITS6 in I569
8728           //
8729           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,35.1903,"");
8730           sub2node->SetLineColor(kColorITS);
8731           sub2node->SetVisibility(1);  
8732           //fNodes->Add(sub2node);
8733           sub1node->cd();
8734           //
8735           // Place copy #5 of ITS6 in I569
8736           //
8737           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,31.2803,"rot532");
8738           sub2node->SetLineColor(kColorITS);
8739           sub2node->SetVisibility(1);
8740           //fNodes->Add(sub2node);
8741           sub1node->cd();
8742           //
8743           // Place copy #6 of ITS6 in I569
8744           //
8745           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,27.3703,"");
8746           sub2node->SetLineColor(kColorITS);
8747           sub2node->SetVisibility(1);
8748           //fNodes->Add(sub2node);
8749           sub1node->cd();
8750           //
8751           // Place copy #7 of ITS6 in I569
8752           //
8753           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,23.4603,"rot532");
8754           sub2node->SetLineColor(kColorITS);
8755           sub2node->SetVisibility(1);   
8756           //fNodes->Add(sub2node);
8757           sub1node->cd();
8758           //
8759           // Place copy #8 of ITS6 in I569
8760           //
8761           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,19.5503,"");
8762           sub2node->SetLineColor(kColorITS);
8763           sub2node->SetVisibility(1);
8764           //fNodes->Add(sub2node);
8765           sub1node->cd();
8766           //
8767           // Place copy #9 of ITS6 in I569
8768           //
8769           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,15.6403,"rot532");
8770           sub2node->SetLineColor(kColorITS);
8771           sub2node->SetVisibility(1);  
8772           //fNodes->Add(sub2node);
8773           sub1node->cd();
8774           //
8775           // Place copy #10 of ITS6 in I569
8776           //
8777           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,11.7303,"");
8778           sub2node->SetLineColor(kColorITS);
8779           sub2node->SetVisibility(1);
8780           //fNodes->Add(sub2node);
8781           sub1node->cd();
8782           //
8783           // Place copy #11 of ITS6 in I569
8784           //
8785           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,7.8203,"rot532");
8786           sub2node->SetLineColor(kColorITS);
8787           sub2node->SetVisibility(1);
8788           //fNodes->Add(sub2node);
8789           sub1node->cd();
8790           //
8791           // Place copy #12 of ITS6 in I569
8792           //
8793           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,3.9103,"");
8794           sub2node->SetLineColor(kColorITS);
8795           sub2node->SetVisibility(1);
8796           //fNodes->Add(sub2node);
8797           sub1node->cd();
8798           //
8799           // Place copy #13 of ITS6 in I569
8800           //
8801           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,0.0003,"");
8802           sub2node->SetLineColor(kColorITS);
8803           sub2node->SetVisibility(1);  
8804           //fNodes->Add(sub2node);
8805           sub1node->cd();
8806           //
8807           // Place copy #14 of ITS6 in I569
8808           //
8809           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-3.9097,"");
8810           sub2node->SetLineColor(kColorITS);
8811           sub2node->SetVisibility(1);
8812           //fNodes->Add(sub2node);
8813           sub1node->cd();
8814           //
8815           // Place copy #15 of ITS6 in I569
8816           //
8817           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-7.8197,"rot532");
8818           sub2node->SetLineColor(kColorITS);
8819           sub2node->SetVisibility(1);
8820           //fNodes->Add(sub2node);
8821           sub1node->cd();
8822           //
8823           // Place copy #16 of ITS6 in I569
8824           //
8825           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-11.7297,"");
8826           sub2node->SetLineColor(kColorITS);
8827           sub2node->SetVisibility(1);
8828           //fNodes->Add(sub2node);
8829           sub1node->cd();
8830           //
8831           // Place copy #17 of ITS6 in I569
8832           //
8833           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-15.6397,"");
8834           sub2node->SetLineColor(kColorITS);
8835           sub2node->SetVisibility(1);
8836           //fNodes->Add(sub2node);
8837           sub1node->cd();
8838           //
8839           // Place copy #18 of ITS6 in I569
8840           //
8841           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-19.5497,"");
8842           sub2node->SetLineColor(kColorITS);
8843           sub2node->SetVisibility(1);
8844           //fNodes->Add(sub2node);
8845           sub1node->cd();
8846           //
8847           // Place copy #19 of ITS6 in I569
8848           //
8849           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-23.4597,"rot532");
8850           sub2node->SetLineColor(kColorITS);
8851           sub2node->SetVisibility(1);   
8852           //fNodes->Add(sub2node);
8853           sub1node->cd();
8854           //
8855           // Place copy #20 of ITS6 in I569
8856           //
8857           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-27.3697,"");
8858           sub2node->SetLineColor(kColorITS);
8859           sub2node->SetVisibility(1);
8860           //fNodes->Add(sub2node);
8861           sub1node->cd();
8862           //
8863           // Place copy #21 of ITS6 in I569
8864           //
8865           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-31.2797,"rot532");
8866           sub2node->SetLineColor(kColorITS);
8867           sub2node->SetVisibility(1);
8868           //fNodes->Add(sub2node);
8869           sub1node->cd();
8870           //
8871           // Place copy #22 of ITS6 in I569
8872           //
8873           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-35.1897,"");
8874           sub2node->SetLineColor(kColorITS);
8875           sub2node->SetVisibility(1);
8876           //fNodes->Add(sub2node);
8877           sub1node->cd();
8878           //
8879           // Place copy #23 of ITS6 in I569
8880           //
8881           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-39.0997,"");
8882           sub2node->SetLineColor(kColorITS);
8883           sub2node->SetVisibility(1);
8884           //fNodes->Add(sub2node);
8885           sub1node->cd();
8886           //
8887           // Place copy #24 of ITS6 in I569
8888           //
8889           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-43.0097,"");
8890           sub2node->SetLineColor(kColorITS);
8891           sub2node->SetVisibility(1); 
8892           //fNodes->Add(sub2node);
8893           sub1node->cd();
8894           //
8895           // Place copy #25 of ITS6 in I569
8896           //
8897           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-46.9197,"rot532");
8898           sub2node->SetLineColor(kColorITS);
8899           sub2node->SetVisibility(1);
8900           //fNodes->Add(sub2node);
8901           sub1node->cd();                                                                                                                                                                                         
8902        //fNodes->Add(sub1node);
8903        node->cd();
8904        //
8905        // Place copy #11 of I569 in IT56
8906        //
8907        sub1node = new TNode("I569","I569","I569",-39.8773,-17.4918,0.,"rot563");
8908        sub1node->SetLineColor(kColorITS);
8909        sub1node->SetVisibility(0);
8910        sub1node->cd();
8911           //
8912           // Place copy #1 of ITS6 in I569
8913           //
8914           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,46.9203,"rot532");
8915           sub2node->SetLineColor(kColorITS);
8916           sub2node->SetVisibility(1);
8917           //fNodes->Add(sub2node);
8918           sub1node->cd();
8919           //
8920           // Place copy #2 of ITS6 in I569
8921           //
8922           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,43.0103,"");
8923           sub2node->SetLineColor(kColorITS);
8924           sub2node->SetVisibility(1);
8925           //fNodes->Add(sub2node);
8926           sub1node->cd();
8927           //
8928           // Place copy #3 of ITS6 in I569
8929           //
8930           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,39.1003,"rot532");
8931           sub2node->SetLineColor(kColorITS);
8932           sub2node->SetVisibility(1);
8933           //fNodes->Add(sub2node);
8934           sub1node->cd();
8935           //
8936           // Place copy #4 of ITS6 in I569
8937           //
8938           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,35.1903,"");
8939           sub2node->SetLineColor(kColorITS);
8940           sub2node->SetVisibility(1);  
8941           //fNodes->Add(sub2node);
8942           sub1node->cd();
8943           //
8944           // Place copy #5 of ITS6 in I569
8945           //
8946           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,31.2803,"rot532");
8947           sub2node->SetLineColor(kColorITS);
8948           sub2node->SetVisibility(1);
8949           //fNodes->Add(sub2node);
8950           sub1node->cd();
8951           //
8952           // Place copy #6 of ITS6 in I569
8953           //
8954           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,27.3703,"");
8955           sub2node->SetLineColor(kColorITS);
8956           sub2node->SetVisibility(1);
8957           //fNodes->Add(sub2node);
8958           sub1node->cd();
8959           //
8960           // Place copy #7 of ITS6 in I569
8961           //
8962           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,23.4603,"rot532");
8963           sub2node->SetLineColor(kColorITS);
8964           sub2node->SetVisibility(1);   
8965           //fNodes->Add(sub2node);
8966           sub1node->cd();
8967           //
8968           // Place copy #8 of ITS6 in I569
8969           //
8970           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,19.5503,"");
8971           sub2node->SetLineColor(kColorITS);
8972           sub2node->SetVisibility(1);
8973           //fNodes->Add(sub2node);
8974           sub1node->cd();
8975           //
8976           // Place copy #9 of ITS6 in I569
8977           //
8978           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,15.6403,"rot532");
8979           sub2node->SetLineColor(kColorITS);
8980           sub2node->SetVisibility(1);  
8981           //fNodes->Add(sub2node);
8982           sub1node->cd();
8983           //
8984           // Place copy #10 of ITS6 in I569
8985           //
8986           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,11.7303,"");
8987           sub2node->SetLineColor(kColorITS);
8988           sub2node->SetVisibility(1);
8989           //fNodes->Add(sub2node);
8990           sub1node->cd();
8991           //
8992           // Place copy #11 of ITS6 in I569
8993           //
8994           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,7.8203,"rot532");
8995           sub2node->SetLineColor(kColorITS);
8996           sub2node->SetVisibility(1);
8997           //fNodes->Add(sub2node);
8998           sub1node->cd();
8999           //
9000           // Place copy #12 of ITS6 in I569
9001           //
9002           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,3.9103,"");
9003           sub2node->SetLineColor(kColorITS);
9004           sub2node->SetVisibility(1);
9005           //fNodes->Add(sub2node);
9006           sub1node->cd();
9007           //
9008           // Place copy #13 of ITS6 in I569
9009           //
9010           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,0.0003,"");
9011           sub2node->SetLineColor(kColorITS);
9012           sub2node->SetVisibility(1);  
9013           //fNodes->Add(sub2node);
9014           sub1node->cd();
9015           //
9016           // Place copy #14 of ITS6 in I569
9017           //
9018           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-3.9097,"");
9019           sub2node->SetLineColor(kColorITS);
9020           sub2node->SetVisibility(1);
9021           //fNodes->Add(sub2node);
9022           sub1node->cd();
9023           //
9024           // Place copy #15 of ITS6 in I569
9025           //
9026           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-7.8197,"rot532");
9027           sub2node->SetLineColor(kColorITS);
9028           sub2node->SetVisibility(1);
9029           //fNodes->Add(sub2node);
9030           sub1node->cd();
9031           //
9032           // Place copy #16 of ITS6 in I569
9033           //
9034           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-11.7297,"");
9035           sub2node->SetLineColor(kColorITS);
9036           sub2node->SetVisibility(1);
9037           //fNodes->Add(sub2node);
9038           sub1node->cd();
9039           //
9040           // Place copy #17 of ITS6 in I569
9041           //
9042           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-15.6397,"");
9043           sub2node->SetLineColor(kColorITS);
9044           sub2node->SetVisibility(1);
9045           //fNodes->Add(sub2node);
9046           sub1node->cd();
9047           //
9048           // Place copy #18 of ITS6 in I569
9049           //
9050           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-19.5497,"");
9051           sub2node->SetLineColor(kColorITS);
9052           sub2node->SetVisibility(1);
9053           //fNodes->Add(sub2node);
9054           sub1node->cd();
9055           //
9056           // Place copy #19 of ITS6 in I569
9057           //
9058           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-23.4597,"rot532");
9059           sub2node->SetLineColor(kColorITS);
9060           sub2node->SetVisibility(1);   
9061           //fNodes->Add(sub2node);
9062           sub1node->cd();
9063           //
9064           // Place copy #20 of ITS6 in I569
9065           //
9066           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-27.3697,"");
9067           sub2node->SetLineColor(kColorITS);
9068           sub2node->SetVisibility(1);
9069           //fNodes->Add(sub2node);
9070           sub1node->cd();
9071           //
9072           // Place copy #21 of ITS6 in I569
9073           //
9074           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-31.2797,"rot532");
9075           sub2node->SetLineColor(kColorITS);
9076           sub2node->SetVisibility(1);
9077           //fNodes->Add(sub2node);
9078           sub1node->cd();
9079           //
9080           // Place copy #22 of ITS6 in I569
9081           //
9082           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-35.1897,"");
9083           sub2node->SetLineColor(kColorITS);
9084           sub2node->SetVisibility(1);
9085           //fNodes->Add(sub2node);
9086           sub1node->cd();
9087           //
9088           // Place copy #23 of ITS6 in I569
9089           //
9090           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-39.0997,"");
9091           sub2node->SetLineColor(kColorITS);
9092           sub2node->SetVisibility(1);
9093           //fNodes->Add(sub2node);
9094           sub1node->cd();
9095           //
9096           // Place copy #24 of ITS6 in I569
9097           //
9098           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-43.0097,"");
9099           sub2node->SetLineColor(kColorITS);
9100           sub2node->SetVisibility(1); 
9101           //fNodes->Add(sub2node);
9102           sub1node->cd();
9103           //
9104           // Place copy #25 of ITS6 in I569
9105           //
9106           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-46.9197,"rot532");
9107           sub2node->SetLineColor(kColorITS);
9108           sub2node->SetVisibility(1);
9109           //fNodes->Add(sub2node);
9110           sub1node->cd();                                                                                                                                                                                         
9111        //fNodes->Add(sub1node);
9112        node->cd();
9113        //
9114        // Place copy #12 of I569 in IT56
9115        //
9116        sub1node = new TNode("I569","I569","I569",-36.5823,-23.9004,0.,"rot564");
9117        sub1node->SetLineColor(kColorITS);
9118        sub1node->SetVisibility(0);
9119        sub1node->cd();
9120           //
9121           // Place copy #1 of ITS6 in I569
9122           //
9123           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,46.9203,"rot532");
9124           sub2node->SetLineColor(kColorITS);
9125           sub2node->SetVisibility(1);
9126           //fNodes->Add(sub2node);
9127           sub1node->cd();
9128           //
9129           // Place copy #2 of ITS6 in I569
9130           //
9131           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,43.0103,"");
9132           sub2node->SetLineColor(kColorITS);
9133           sub2node->SetVisibility(1);
9134           //fNodes->Add(sub2node);
9135           sub1node->cd();
9136           //
9137           // Place copy #3 of ITS6 in I569
9138           //
9139           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,39.1003,"rot532");
9140           sub2node->SetLineColor(kColorITS);
9141           sub2node->SetVisibility(1);
9142           //fNodes->Add(sub2node);
9143           sub1node->cd();
9144           //
9145           // Place copy #4 of ITS6 in I569
9146           //
9147           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,35.1903,"");
9148           sub2node->SetLineColor(kColorITS);
9149           sub2node->SetVisibility(1);  
9150           //fNodes->Add(sub2node);
9151           sub1node->cd();
9152           //
9153           // Place copy #5 of ITS6 in I569
9154           //
9155           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,31.2803,"rot532");
9156           sub2node->SetLineColor(kColorITS);
9157           sub2node->SetVisibility(1);
9158           //fNodes->Add(sub2node);
9159           sub1node->cd();
9160           //
9161           // Place copy #6 of ITS6 in I569
9162           //
9163           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,27.3703,"");
9164           sub2node->SetLineColor(kColorITS);
9165           sub2node->SetVisibility(1);
9166           //fNodes->Add(sub2node);
9167           sub1node->cd();
9168           //
9169           // Place copy #7 of ITS6 in I569
9170           //
9171           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,23.4603,"rot532");
9172           sub2node->SetLineColor(kColorITS);
9173           sub2node->SetVisibility(1);   
9174           //fNodes->Add(sub2node);
9175           sub1node->cd();
9176           //
9177           // Place copy #8 of ITS6 in I569
9178           //
9179           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,19.5503,"");
9180           sub2node->SetLineColor(kColorITS);
9181           sub2node->SetVisibility(1);
9182           //fNodes->Add(sub2node);
9183           sub1node->cd();
9184           //
9185           // Place copy #9 of ITS6 in I569
9186           //
9187           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,15.6403,"rot532");
9188           sub2node->SetLineColor(kColorITS);
9189           sub2node->SetVisibility(1);  
9190           //fNodes->Add(sub2node);
9191           sub1node->cd();
9192           //
9193           // Place copy #10 of ITS6 in I569
9194           //
9195           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,11.7303,"");
9196           sub2node->SetLineColor(kColorITS);
9197           sub2node->SetVisibility(1);
9198           //fNodes->Add(sub2node);
9199           sub1node->cd();
9200           //
9201           // Place copy #11 of ITS6 in I569
9202           //
9203           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,7.8203,"rot532");
9204           sub2node->SetLineColor(kColorITS);
9205           sub2node->SetVisibility(1);
9206           //fNodes->Add(sub2node);
9207           sub1node->cd();
9208           //
9209           // Place copy #12 of ITS6 in I569
9210           //
9211           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,3.9103,"");
9212           sub2node->SetLineColor(kColorITS);
9213           sub2node->SetVisibility(1);
9214           //fNodes->Add(sub2node);
9215           sub1node->cd();
9216           //
9217           // Place copy #13 of ITS6 in I569
9218           //
9219           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,0.0003,"");
9220           sub2node->SetLineColor(kColorITS);
9221           sub2node->SetVisibility(1);  
9222           //fNodes->Add(sub2node);
9223           sub1node->cd();
9224           //
9225           // Place copy #14 of ITS6 in I569
9226           //
9227           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-3.9097,"");
9228           sub2node->SetLineColor(kColorITS);
9229           sub2node->SetVisibility(1);
9230           //fNodes->Add(sub2node);
9231           sub1node->cd();
9232           //
9233           // Place copy #15 of ITS6 in I569
9234           //
9235           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-7.8197,"rot532");
9236           sub2node->SetLineColor(kColorITS);
9237           sub2node->SetVisibility(1);
9238           //fNodes->Add(sub2node);
9239           sub1node->cd();
9240           //
9241           // Place copy #16 of ITS6 in I569
9242           //
9243           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-11.7297,"");
9244           sub2node->SetLineColor(kColorITS);
9245           sub2node->SetVisibility(1);
9246           //fNodes->Add(sub2node);
9247           sub1node->cd();
9248           //
9249           // Place copy #17 of ITS6 in I569
9250           //
9251           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-15.6397,"");
9252           sub2node->SetLineColor(kColorITS);
9253           sub2node->SetVisibility(1);
9254           //fNodes->Add(sub2node);
9255           sub1node->cd();
9256           //
9257           // Place copy #18 of ITS6 in I569
9258           //
9259           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-19.5497,"");
9260           sub2node->SetLineColor(kColorITS);
9261           sub2node->SetVisibility(1);
9262           //fNodes->Add(sub2node);
9263           sub1node->cd();
9264           //
9265           // Place copy #19 of ITS6 in I569
9266           //
9267           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-23.4597,"rot532");
9268           sub2node->SetLineColor(kColorITS);
9269           sub2node->SetVisibility(1);   
9270           //fNodes->Add(sub2node);
9271           sub1node->cd();
9272           //
9273           // Place copy #20 of ITS6 in I569
9274           //
9275           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-27.3697,"");
9276           sub2node->SetLineColor(kColorITS);
9277           sub2node->SetVisibility(1);
9278           //fNodes->Add(sub2node);
9279           sub1node->cd();
9280           //
9281           // Place copy #21 of ITS6 in I569
9282           //
9283           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-31.2797,"rot532");
9284           sub2node->SetLineColor(kColorITS);
9285           sub2node->SetVisibility(1);
9286           //fNodes->Add(sub2node);
9287           sub1node->cd();
9288           //
9289           // Place copy #22 of ITS6 in I569
9290           //
9291           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-35.1897,"");
9292           sub2node->SetLineColor(kColorITS);
9293           sub2node->SetVisibility(1);
9294           //fNodes->Add(sub2node);
9295           sub1node->cd();
9296           //
9297           // Place copy #23 of ITS6 in I569
9298           //
9299           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-39.0997,"");
9300           sub2node->SetLineColor(kColorITS);
9301           sub2node->SetVisibility(1);
9302           //fNodes->Add(sub2node);
9303           sub1node->cd();
9304           //
9305           // Place copy #24 of ITS6 in I569
9306           //
9307           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-43.0097,"");
9308           sub2node->SetLineColor(kColorITS);
9309           sub2node->SetVisibility(1); 
9310           //fNodes->Add(sub2node);
9311           sub1node->cd();
9312           //
9313           // Place copy #25 of ITS6 in I569
9314           //
9315           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-46.9197,"rot532");
9316           sub2node->SetLineColor(kColorITS);
9317           sub2node->SetVisibility(1);
9318           //fNodes->Add(sub2node);
9319           sub1node->cd();                                                                                                                                                                                         
9320        //fNodes->Add(sub1node);
9321        node->cd();
9322        //
9323        // Place copy #13 of I569 in IT56
9324        //
9325        sub1node = new TNode("I569","I569","I569",-32.0371,-29.4922,0.,"rot565");
9326        sub1node->SetLineColor(kColorITS);
9327        sub1node->SetVisibility(0);
9328        sub1node->cd();
9329           //
9330           // Place copy #1 of ITS6 in I569
9331           //
9332           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,46.9203,"rot532");
9333           sub2node->SetLineColor(kColorITS);
9334           sub2node->SetVisibility(1);
9335           //fNodes->Add(sub2node);
9336           sub1node->cd();
9337           //
9338           // Place copy #2 of ITS6 in I569
9339           //
9340           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,43.0103,"");
9341           sub2node->SetLineColor(kColorITS);
9342           sub2node->SetVisibility(1);
9343           //fNodes->Add(sub2node);
9344           sub1node->cd();
9345           //
9346           // Place copy #3 of ITS6 in I569
9347           //
9348           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,39.1003,"rot532");
9349           sub2node->SetLineColor(kColorITS);
9350           sub2node->SetVisibility(1);
9351           //fNodes->Add(sub2node);
9352           sub1node->cd();
9353           //
9354           // Place copy #4 of ITS6 in I569
9355           //
9356           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,35.1903,"");
9357           sub2node->SetLineColor(kColorITS);
9358           sub2node->SetVisibility(1);  
9359           //fNodes->Add(sub2node);
9360           sub1node->cd();
9361           //
9362           // Place copy #5 of ITS6 in I569
9363           //
9364           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,31.2803,"rot532");
9365           sub2node->SetLineColor(kColorITS);
9366           sub2node->SetVisibility(1);
9367           //fNodes->Add(sub2node);
9368           sub1node->cd();
9369           //
9370           // Place copy #6 of ITS6 in I569
9371           //
9372           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,27.3703,"");
9373           sub2node->SetLineColor(kColorITS);
9374           sub2node->SetVisibility(1);
9375           //fNodes->Add(sub2node);
9376           sub1node->cd();
9377           //
9378           // Place copy #7 of ITS6 in I569
9379           //
9380           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,23.4603,"rot532");
9381           sub2node->SetLineColor(kColorITS);
9382           sub2node->SetVisibility(1);   
9383           //fNodes->Add(sub2node);
9384           sub1node->cd();
9385           //
9386           // Place copy #8 of ITS6 in I569
9387           //
9388           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,19.5503,"");
9389           sub2node->SetLineColor(kColorITS);
9390           sub2node->SetVisibility(1);
9391           //fNodes->Add(sub2node);
9392           sub1node->cd();
9393           //
9394           // Place copy #9 of ITS6 in I569
9395           //
9396           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,15.6403,"rot532");
9397           sub2node->SetLineColor(kColorITS);
9398           sub2node->SetVisibility(1);  
9399           //fNodes->Add(sub2node);
9400           sub1node->cd();
9401           //
9402           // Place copy #10 of ITS6 in I569
9403           //
9404           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,11.7303,"");
9405           sub2node->SetLineColor(kColorITS);
9406           sub2node->SetVisibility(1);
9407           //fNodes->Add(sub2node);
9408           sub1node->cd();
9409           //
9410           // Place copy #11 of ITS6 in I569
9411           //
9412           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,7.8203,"rot532");
9413           sub2node->SetLineColor(kColorITS);
9414           sub2node->SetVisibility(1);
9415           //fNodes->Add(sub2node);
9416           sub1node->cd();
9417           //
9418           // Place copy #12 of ITS6 in I569
9419           //
9420           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,3.9103,"");
9421           sub2node->SetLineColor(kColorITS);
9422           sub2node->SetVisibility(1);
9423           //fNodes->Add(sub2node);
9424           sub1node->cd();
9425           //
9426           // Place copy #13 of ITS6 in I569
9427           //
9428           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,0.0003,"");
9429           sub2node->SetLineColor(kColorITS);
9430           sub2node->SetVisibility(1);  
9431           //fNodes->Add(sub2node);
9432           sub1node->cd();
9433           //
9434           // Place copy #14 of ITS6 in I569
9435           //
9436           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-3.9097,"");
9437           sub2node->SetLineColor(kColorITS);
9438           sub2node->SetVisibility(1);
9439           //fNodes->Add(sub2node);
9440           sub1node->cd();
9441           //
9442           // Place copy #15 of ITS6 in I569
9443           //
9444           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-7.8197,"rot532");
9445           sub2node->SetLineColor(kColorITS);
9446           sub2node->SetVisibility(1);
9447           //fNodes->Add(sub2node);
9448           sub1node->cd();
9449           //
9450           // Place copy #16 of ITS6 in I569
9451           //
9452           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-11.7297,"");
9453           sub2node->SetLineColor(kColorITS);
9454           sub2node->SetVisibility(1);
9455           //fNodes->Add(sub2node);
9456           sub1node->cd();
9457           //
9458           // Place copy #17 of ITS6 in I569
9459           //
9460           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-15.6397,"");
9461           sub2node->SetLineColor(kColorITS);
9462           sub2node->SetVisibility(1);
9463           //fNodes->Add(sub2node);
9464           sub1node->cd();
9465           //
9466           // Place copy #18 of ITS6 in I569
9467           //
9468           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-19.5497,"");
9469           sub2node->SetLineColor(kColorITS);
9470           sub2node->SetVisibility(1);
9471           //fNodes->Add(sub2node);
9472           sub1node->cd();
9473           //
9474           // Place copy #19 of ITS6 in I569
9475           //
9476           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-23.4597,"rot532");
9477           sub2node->SetLineColor(kColorITS);
9478           sub2node->SetVisibility(1);   
9479           //fNodes->Add(sub2node);
9480           sub1node->cd();
9481           //
9482           // Place copy #20 of ITS6 in I569
9483           //
9484           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-27.3697,"");
9485           sub2node->SetLineColor(kColorITS);
9486           sub2node->SetVisibility(1);
9487           //fNodes->Add(sub2node);
9488           sub1node->cd();
9489           //
9490           // Place copy #21 of ITS6 in I569
9491           //
9492           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-31.2797,"rot532");
9493           sub2node->SetLineColor(kColorITS);
9494           sub2node->SetVisibility(1);
9495           //fNodes->Add(sub2node);
9496           sub1node->cd();
9497           //
9498           // Place copy #22 of ITS6 in I569
9499           //
9500           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-35.1897,"");
9501           sub2node->SetLineColor(kColorITS);
9502           sub2node->SetVisibility(1);
9503           //fNodes->Add(sub2node);
9504           sub1node->cd();
9505           //
9506           // Place copy #23 of ITS6 in I569
9507           //
9508           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-39.0997,"");
9509           sub2node->SetLineColor(kColorITS);
9510           sub2node->SetVisibility(1);
9511           //fNodes->Add(sub2node);
9512           sub1node->cd();
9513           //
9514           // Place copy #24 of ITS6 in I569
9515           //
9516           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-43.0097,"");
9517           sub2node->SetLineColor(kColorITS);
9518           sub2node->SetVisibility(1); 
9519           //fNodes->Add(sub2node);
9520           sub1node->cd();
9521           //
9522           // Place copy #25 of ITS6 in I569
9523           //
9524           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-46.9197,"rot532");
9525           sub2node->SetLineColor(kColorITS);
9526           sub2node->SetVisibility(1);
9527           //fNodes->Add(sub2node);
9528           sub1node->cd();                                                                                                                                                                                         
9529        //fNodes->Add(sub1node);
9530        node->cd();
9531        //
9532        // Place copy #14 of I569 in IT56
9533        //
9534        sub1node = new TNode("I569","I569","I569",-26.8397,-34.4836,0.,"rot566");
9535        sub1node->SetLineColor(kColorITS);
9536        sub1node->SetVisibility(0);
9537        sub1node->cd();
9538           //
9539           // Place copy #1 of ITS6 in I569
9540           //
9541           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,46.9203,"rot532");
9542           sub2node->SetLineColor(kColorITS);
9543           sub2node->SetVisibility(1);
9544           //fNodes->Add(sub2node);
9545           sub1node->cd();
9546           //
9547           // Place copy #2 of ITS6 in I569
9548           //
9549           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,43.0103,"");
9550           sub2node->SetLineColor(kColorITS);
9551           sub2node->SetVisibility(1);
9552           //fNodes->Add(sub2node);
9553           sub1node->cd();
9554           //
9555           // Place copy #3 of ITS6 in I569
9556           //
9557           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,39.1003,"rot532");
9558           sub2node->SetLineColor(kColorITS);
9559           sub2node->SetVisibility(1);
9560           //fNodes->Add(sub2node);
9561           sub1node->cd();
9562           //
9563           // Place copy #4 of ITS6 in I569
9564           //
9565           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,35.1903,"");
9566           sub2node->SetLineColor(kColorITS);
9567           sub2node->SetVisibility(1);  
9568           //fNodes->Add(sub2node);
9569           sub1node->cd();
9570           //
9571           // Place copy #5 of ITS6 in I569
9572           //
9573           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,31.2803,"rot532");
9574           sub2node->SetLineColor(kColorITS);
9575           sub2node->SetVisibility(1);
9576           //fNodes->Add(sub2node);
9577           sub1node->cd();
9578           //
9579           // Place copy #6 of ITS6 in I569
9580           //
9581           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,27.3703,"");
9582           sub2node->SetLineColor(kColorITS);
9583           sub2node->SetVisibility(1);
9584           //fNodes->Add(sub2node);
9585           sub1node->cd();
9586           //
9587           // Place copy #7 of ITS6 in I569
9588           //
9589           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,23.4603,"rot532");
9590           sub2node->SetLineColor(kColorITS);
9591           sub2node->SetVisibility(1);   
9592           //fNodes->Add(sub2node);
9593           sub1node->cd();
9594           //
9595           // Place copy #8 of ITS6 in I569
9596           //
9597           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,19.5503,"");
9598           sub2node->SetLineColor(kColorITS);
9599           sub2node->SetVisibility(1);
9600           //fNodes->Add(sub2node);
9601           sub1node->cd();
9602           //
9603           // Place copy #9 of ITS6 in I569
9604           //
9605           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,15.6403,"rot532");
9606           sub2node->SetLineColor(kColorITS);
9607           sub2node->SetVisibility(1);  
9608           //fNodes->Add(sub2node);
9609           sub1node->cd();
9610           //
9611           // Place copy #10 of ITS6 in I569
9612           //
9613           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,11.7303,"");
9614           sub2node->SetLineColor(kColorITS);
9615           sub2node->SetVisibility(1);
9616           //fNodes->Add(sub2node);
9617           sub1node->cd();
9618           //
9619           // Place copy #11 of ITS6 in I569
9620           //
9621           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,7.8203,"rot532");
9622           sub2node->SetLineColor(kColorITS);
9623           sub2node->SetVisibility(1);
9624           //fNodes->Add(sub2node);
9625           sub1node->cd();
9626           //
9627           // Place copy #12 of ITS6 in I569
9628           //
9629           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,3.9103,"");
9630           sub2node->SetLineColor(kColorITS);
9631           sub2node->SetVisibility(1);
9632           //fNodes->Add(sub2node);
9633           sub1node->cd();
9634           //
9635           // Place copy #13 of ITS6 in I569
9636           //
9637           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,0.0003,"");
9638           sub2node->SetLineColor(kColorITS);
9639           sub2node->SetVisibility(1);  
9640           //fNodes->Add(sub2node);
9641           sub1node->cd();
9642           //
9643           // Place copy #14 of ITS6 in I569
9644           //
9645           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-3.9097,"");
9646           sub2node->SetLineColor(kColorITS);
9647           sub2node->SetVisibility(1);
9648           //fNodes->Add(sub2node);
9649           sub1node->cd();
9650           //
9651           // Place copy #15 of ITS6 in I569
9652           //
9653           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-7.8197,"rot532");
9654           sub2node->SetLineColor(kColorITS);
9655           sub2node->SetVisibility(1);
9656           //fNodes->Add(sub2node);
9657           sub1node->cd();
9658           //
9659           // Place copy #16 of ITS6 in I569
9660           //
9661           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-11.7297,"");
9662           sub2node->SetLineColor(kColorITS);
9663           sub2node->SetVisibility(1);
9664           //fNodes->Add(sub2node);
9665           sub1node->cd();
9666           //
9667           // Place copy #17 of ITS6 in I569
9668           //
9669           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-15.6397,"");
9670           sub2node->SetLineColor(kColorITS);
9671           sub2node->SetVisibility(1);
9672           //fNodes->Add(sub2node);
9673           sub1node->cd();
9674           //
9675           // Place copy #18 of ITS6 in I569
9676           //
9677           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-19.5497,"");
9678           sub2node->SetLineColor(kColorITS);
9679           sub2node->SetVisibility(1);
9680           //fNodes->Add(sub2node);
9681           sub1node->cd();
9682           //
9683           // Place copy #19 of ITS6 in I569
9684           //
9685           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-23.4597,"rot532");
9686           sub2node->SetLineColor(kColorITS);
9687           sub2node->SetVisibility(1);   
9688           //fNodes->Add(sub2node);
9689           sub1node->cd();
9690           //
9691           // Place copy #20 of ITS6 in I569
9692           //
9693           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-27.3697,"");
9694           sub2node->SetLineColor(kColorITS);
9695           sub2node->SetVisibility(1);
9696           //fNodes->Add(sub2node);
9697           sub1node->cd();
9698           //
9699           // Place copy #21 of ITS6 in I569
9700           //
9701           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-31.2797,"rot532");
9702           sub2node->SetLineColor(kColorITS);
9703           sub2node->SetVisibility(1);
9704           //fNodes->Add(sub2node);
9705           sub1node->cd();
9706           //
9707           // Place copy #22 of ITS6 in I569
9708           //
9709           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-35.1897,"");
9710           sub2node->SetLineColor(kColorITS);
9711           sub2node->SetVisibility(1);
9712           //fNodes->Add(sub2node);
9713           sub1node->cd();
9714           //
9715           // Place copy #23 of ITS6 in I569
9716           //
9717           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-39.0997,"");
9718           sub2node->SetLineColor(kColorITS);
9719           sub2node->SetVisibility(1);
9720           //fNodes->Add(sub2node);
9721           sub1node->cd();
9722           //
9723           // Place copy #24 of ITS6 in I569
9724           //
9725           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-43.0097,"");
9726           sub2node->SetLineColor(kColorITS);
9727           sub2node->SetVisibility(1); 
9728           //fNodes->Add(sub2node);
9729           sub1node->cd();
9730           //
9731           // Place copy #25 of ITS6 in I569
9732           //
9733           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-46.9197,"rot532");
9734           sub2node->SetLineColor(kColorITS);
9735           sub2node->SetVisibility(1);
9736           //fNodes->Add(sub2node);
9737           sub1node->cd();                                                                                                                                                                                         
9738        //fNodes->Add(sub1node);
9739        node->cd();
9740        //
9741        // Place copy #15 of I569 in IT56
9742        //
9743        sub1node = new TNode("I569","I569","I569",-20.7251,-38.2967,0.,"rot567");
9744        sub1node->SetLineColor(kColorITS);
9745        sub1node->SetVisibility(0);
9746        sub1node->cd();
9747           //
9748           // Place copy #1 of ITS6 in I569
9749           //
9750           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,46.9203,"rot532");
9751           sub2node->SetLineColor(kColorITS);
9752           sub2node->SetVisibility(1);
9753           //fNodes->Add(sub2node);
9754           sub1node->cd();
9755           //
9756           // Place copy #2 of ITS6 in I569
9757           //
9758           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,43.0103,"");
9759           sub2node->SetLineColor(kColorITS);
9760           sub2node->SetVisibility(1);
9761           //fNodes->Add(sub2node);
9762           sub1node->cd();
9763           //
9764           // Place copy #3 of ITS6 in I569
9765           //
9766           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,39.1003,"rot532");
9767           sub2node->SetLineColor(kColorITS);
9768           sub2node->SetVisibility(1);
9769           //fNodes->Add(sub2node);
9770           sub1node->cd();
9771           //
9772           // Place copy #4 of ITS6 in I569
9773           //
9774           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,35.1903,"");
9775           sub2node->SetLineColor(kColorITS);
9776           sub2node->SetVisibility(1);  
9777           //fNodes->Add(sub2node);
9778           sub1node->cd();
9779           //
9780           // Place copy #5 of ITS6 in I569
9781           //
9782           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,31.2803,"rot532");
9783           sub2node->SetLineColor(kColorITS);
9784           sub2node->SetVisibility(1);
9785           //fNodes->Add(sub2node);
9786           sub1node->cd();
9787           //
9788           // Place copy #6 of ITS6 in I569
9789           //
9790           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,27.3703,"");
9791           sub2node->SetLineColor(kColorITS);
9792           sub2node->SetVisibility(1);
9793           //fNodes->Add(sub2node);
9794           sub1node->cd();
9795           //
9796           // Place copy #7 of ITS6 in I569
9797           //
9798           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,23.4603,"rot532");
9799           sub2node->SetLineColor(kColorITS);
9800           sub2node->SetVisibility(1);   
9801           //fNodes->Add(sub2node);
9802           sub1node->cd();
9803           //
9804           // Place copy #8 of ITS6 in I569
9805           //
9806           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,19.5503,"");
9807           sub2node->SetLineColor(kColorITS);
9808           sub2node->SetVisibility(1);
9809           //fNodes->Add(sub2node);
9810           sub1node->cd();
9811           //
9812           // Place copy #9 of ITS6 in I569
9813           //
9814           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,15.6403,"rot532");
9815           sub2node->SetLineColor(kColorITS);
9816           sub2node->SetVisibility(1);  
9817           //fNodes->Add(sub2node);
9818           sub1node->cd();
9819           //
9820           // Place copy #10 of ITS6 in I569
9821           //
9822           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,11.7303,"");
9823           sub2node->SetLineColor(kColorITS);
9824           sub2node->SetVisibility(1);
9825           //fNodes->Add(sub2node);
9826           sub1node->cd();
9827           //
9828           // Place copy #11 of ITS6 in I569
9829           //
9830           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,7.8203,"rot532");
9831           sub2node->SetLineColor(kColorITS);
9832           sub2node->SetVisibility(1);
9833           //fNodes->Add(sub2node);
9834           sub1node->cd();
9835           //
9836           // Place copy #12 of ITS6 in I569
9837           //
9838           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,3.9103,"");
9839           sub2node->SetLineColor(kColorITS);
9840           sub2node->SetVisibility(1);
9841           //fNodes->Add(sub2node);
9842           sub1node->cd();
9843           //
9844           // Place copy #13 of ITS6 in I569
9845           //
9846           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,0.0003,"");
9847           sub2node->SetLineColor(kColorITS);
9848           sub2node->SetVisibility(1);  
9849           //fNodes->Add(sub2node);
9850           sub1node->cd();
9851           //
9852           // Place copy #14 of ITS6 in I569
9853           //
9854           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-3.9097,"");
9855           sub2node->SetLineColor(kColorITS);
9856           sub2node->SetVisibility(1);
9857           //fNodes->Add(sub2node);
9858           sub1node->cd();
9859           //
9860           // Place copy #15 of ITS6 in I569
9861           //
9862           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-7.8197,"rot532");
9863           sub2node->SetLineColor(kColorITS);
9864           sub2node->SetVisibility(1);
9865           //fNodes->Add(sub2node);
9866           sub1node->cd();
9867           //
9868           // Place copy #16 of ITS6 in I569
9869           //
9870           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-11.7297,"");
9871           sub2node->SetLineColor(kColorITS);
9872           sub2node->SetVisibility(1);
9873           //fNodes->Add(sub2node);
9874           sub1node->cd();
9875           //
9876           // Place copy #17 of ITS6 in I569
9877           //
9878           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-15.6397,"");
9879           sub2node->SetLineColor(kColorITS);
9880           sub2node->SetVisibility(1);
9881           //fNodes->Add(sub2node);
9882           sub1node->cd();
9883           //
9884           // Place copy #18 of ITS6 in I569
9885           //
9886           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-19.5497,"");
9887           sub2node->SetLineColor(kColorITS);
9888           sub2node->SetVisibility(1);
9889           //fNodes->Add(sub2node);
9890           sub1node->cd();
9891           //
9892           // Place copy #19 of ITS6 in I569
9893           //
9894           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-23.4597,"rot532");
9895           sub2node->SetLineColor(kColorITS);
9896           sub2node->SetVisibility(1);   
9897           //fNodes->Add(sub2node);
9898           sub1node->cd();
9899           //
9900           // Place copy #20 of ITS6 in I569
9901           //
9902           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-27.3697,"");
9903           sub2node->SetLineColor(kColorITS);
9904           sub2node->SetVisibility(1);
9905           //fNodes->Add(sub2node);
9906           sub1node->cd();
9907           //
9908           // Place copy #21 of ITS6 in I569
9909           //
9910           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-31.2797,"rot532");
9911           sub2node->SetLineColor(kColorITS);
9912           sub2node->SetVisibility(1);
9913           //fNodes->Add(sub2node);
9914           sub1node->cd();
9915           //
9916           // Place copy #22 of ITS6 in I569
9917           //
9918           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-35.1897,"");
9919           sub2node->SetLineColor(kColorITS);
9920           sub2node->SetVisibility(1);
9921           //fNodes->Add(sub2node);
9922           sub1node->cd();
9923           //
9924           // Place copy #23 of ITS6 in I569
9925           //
9926           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-39.0997,"");
9927           sub2node->SetLineColor(kColorITS);
9928           sub2node->SetVisibility(1);
9929           //fNodes->Add(sub2node);
9930           sub1node->cd();
9931           //
9932           // Place copy #24 of ITS6 in I569
9933           //
9934           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-43.0097,"");
9935           sub2node->SetLineColor(kColorITS);
9936           sub2node->SetVisibility(1); 
9937           //fNodes->Add(sub2node);
9938           sub1node->cd();
9939           //
9940           // Place copy #25 of ITS6 in I569
9941           //
9942           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-46.9197,"rot532");
9943           sub2node->SetLineColor(kColorITS);
9944           sub2node->SetVisibility(1);
9945           //fNodes->Add(sub2node);
9946           sub1node->cd();                                                                                                                                                                                         
9947        //fNodes->Add(sub1node);
9948        node->cd();
9949        //
9950        // Place copy #16 of I569 in IT56
9951        //
9952        sub1node = new TNode("I569","I569","I569",-14.1886,-41.33,0.,"rot568");
9953        sub1node->SetLineColor(kColorITS);
9954        sub1node->SetVisibility(0);
9955        sub1node->cd();
9956           //
9957           // Place copy #1 of ITS6 in I569
9958           //
9959           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,46.9203,"rot532");
9960           sub2node->SetLineColor(kColorITS);
9961           sub2node->SetVisibility(1);
9962           //fNodes->Add(sub2node);
9963           sub1node->cd();
9964           //
9965           // Place copy #2 of ITS6 in I569
9966           //
9967           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,43.0103,"");
9968           sub2node->SetLineColor(kColorITS);
9969           sub2node->SetVisibility(1);
9970           //fNodes->Add(sub2node);
9971           sub1node->cd();
9972           //
9973           // Place copy #3 of ITS6 in I569
9974           //
9975           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,39.1003,"rot532");
9976           sub2node->SetLineColor(kColorITS);
9977           sub2node->SetVisibility(1);
9978           //fNodes->Add(sub2node);
9979           sub1node->cd();
9980           //
9981           // Place copy #4 of ITS6 in I569
9982           //
9983           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,35.1903,"");
9984           sub2node->SetLineColor(kColorITS);
9985           sub2node->SetVisibility(1);  
9986           //fNodes->Add(sub2node);
9987           sub1node->cd();
9988           //
9989           // Place copy #5 of ITS6 in I569
9990           //
9991           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,31.2803,"rot532");
9992           sub2node->SetLineColor(kColorITS);
9993           sub2node->SetVisibility(1);
9994           //fNodes->Add(sub2node);
9995           sub1node->cd();
9996           //
9997           // Place copy #6 of ITS6 in I569
9998           //
9999           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,27.3703,"");
10000           sub2node->SetLineColor(kColorITS);
10001           sub2node->SetVisibility(1);
10002           //fNodes->Add(sub2node);
10003           sub1node->cd();
10004           //
10005           // Place copy #7 of ITS6 in I569
10006           //
10007           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,23.4603,"rot532");
10008           sub2node->SetLineColor(kColorITS);
10009           sub2node->SetVisibility(1);   
10010           //fNodes->Add(sub2node);
10011           sub1node->cd();
10012           //
10013           // Place copy #8 of ITS6 in I569
10014           //
10015           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,19.5503,"");
10016           sub2node->SetLineColor(kColorITS);
10017           sub2node->SetVisibility(1);
10018           //fNodes->Add(sub2node);
10019           sub1node->cd();
10020           //
10021           // Place copy #9 of ITS6 in I569
10022           //
10023           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,15.6403,"rot532");
10024           sub2node->SetLineColor(kColorITS);
10025           sub2node->SetVisibility(1);  
10026           //fNodes->Add(sub2node);
10027           sub1node->cd();
10028           //
10029           // Place copy #10 of ITS6 in I569
10030           //
10031           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,11.7303,"");
10032           sub2node->SetLineColor(kColorITS);
10033           sub2node->SetVisibility(1);
10034           //fNodes->Add(sub2node);
10035           sub1node->cd();
10036           //
10037           // Place copy #11 of ITS6 in I569
10038           //
10039           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,7.8203,"rot532");
10040           sub2node->SetLineColor(kColorITS);
10041           sub2node->SetVisibility(1);
10042           //fNodes->Add(sub2node);
10043           sub1node->cd();
10044           //
10045           // Place copy #12 of ITS6 in I569
10046           //
10047           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,3.9103,"");
10048           sub2node->SetLineColor(kColorITS);
10049           sub2node->SetVisibility(1);
10050           //fNodes->Add(sub2node);
10051           sub1node->cd();
10052           //
10053           // Place copy #13 of ITS6 in I569
10054           //
10055           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,0.0003,"");
10056           sub2node->SetLineColor(kColorITS);
10057           sub2node->SetVisibility(1);  
10058           //fNodes->Add(sub2node);
10059           sub1node->cd();
10060           //
10061           // Place copy #14 of ITS6 in I569
10062           //
10063           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-3.9097,"");
10064           sub2node->SetLineColor(kColorITS);
10065           sub2node->SetVisibility(1);
10066           //fNodes->Add(sub2node);
10067           sub1node->cd();
10068           //
10069           // Place copy #15 of ITS6 in I569
10070           //
10071           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-7.8197,"rot532");
10072           sub2node->SetLineColor(kColorITS);
10073           sub2node->SetVisibility(1);
10074           //fNodes->Add(sub2node);
10075           sub1node->cd();
10076           //
10077           // Place copy #16 of ITS6 in I569
10078           //
10079           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-11.7297,"");
10080           sub2node->SetLineColor(kColorITS);
10081           sub2node->SetVisibility(1);
10082           //fNodes->Add(sub2node);
10083           sub1node->cd();
10084           //
10085           // Place copy #17 of ITS6 in I569
10086           //
10087           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-15.6397,"");
10088           sub2node->SetLineColor(kColorITS);
10089           sub2node->SetVisibility(1);
10090           //fNodes->Add(sub2node);
10091           sub1node->cd();
10092           //
10093           // Place copy #18 of ITS6 in I569
10094           //
10095           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-19.5497,"");
10096           sub2node->SetLineColor(kColorITS);
10097           sub2node->SetVisibility(1);
10098           //fNodes->Add(sub2node);
10099           sub1node->cd();
10100           //
10101           // Place copy #19 of ITS6 in I569
10102           //
10103           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-23.4597,"rot532");
10104           sub2node->SetLineColor(kColorITS);
10105           sub2node->SetVisibility(1);   
10106           //fNodes->Add(sub2node);
10107           sub1node->cd();
10108           //
10109           // Place copy #20 of ITS6 in I569
10110           //
10111           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-27.3697,"");
10112           sub2node->SetLineColor(kColorITS);
10113           sub2node->SetVisibility(1);
10114           //fNodes->Add(sub2node);
10115           sub1node->cd();
10116           //
10117           // Place copy #21 of ITS6 in I569
10118           //
10119           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-31.2797,"rot532");
10120           sub2node->SetLineColor(kColorITS);
10121           sub2node->SetVisibility(1);
10122           //fNodes->Add(sub2node);
10123           sub1node->cd();
10124           //
10125           // Place copy #22 of ITS6 in I569
10126           //
10127           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-35.1897,"");
10128           sub2node->SetLineColor(kColorITS);
10129           sub2node->SetVisibility(1);
10130           //fNodes->Add(sub2node);
10131           sub1node->cd();
10132           //
10133           // Place copy #23 of ITS6 in I569
10134           //
10135           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-39.0997,"");
10136           sub2node->SetLineColor(kColorITS);
10137           sub2node->SetVisibility(1);
10138           //fNodes->Add(sub2node);
10139           sub1node->cd();
10140           //
10141           // Place copy #24 of ITS6 in I569
10142           //
10143           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-43.0097,"");
10144           sub2node->SetLineColor(kColorITS);
10145           sub2node->SetVisibility(1); 
10146           //fNodes->Add(sub2node);
10147           sub1node->cd();
10148           //
10149           // Place copy #25 of ITS6 in I569
10150           //
10151           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-46.9197,"rot532");
10152           sub2node->SetLineColor(kColorITS);
10153           sub2node->SetVisibility(1);
10154           //fNodes->Add(sub2node);
10155           sub1node->cd();                                                                                                                                                                                         
10156        //fNodes->Add(sub1node);
10157        node->cd();
10158        //
10159        // Place copy #17 of I569 in IT56
10160        //
10161        sub1node = new TNode("I569","I569","I569",-7.1673,-42.9511,0.,"rot569");
10162        sub1node->SetLineColor(kColorITS);
10163        sub1node->SetVisibility(0);
10164        sub1node->cd();
10165           //
10166           // Place copy #1 of ITS6 in I569
10167           //
10168           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,46.9203,"rot532");
10169           sub2node->SetLineColor(kColorITS);
10170           sub2node->SetVisibility(1);
10171           //fNodes->Add(sub2node);
10172           sub1node->cd();
10173           //
10174           // Place copy #2 of ITS6 in I569
10175           //
10176           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,43.0103,"");
10177           sub2node->SetLineColor(kColorITS);
10178           sub2node->SetVisibility(1);
10179           //fNodes->Add(sub2node);
10180           sub1node->cd();
10181           //
10182           // Place copy #3 of ITS6 in I569
10183           //
10184           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,39.1003,"rot532");
10185           sub2node->SetLineColor(kColorITS);
10186           sub2node->SetVisibility(1);
10187           //fNodes->Add(sub2node);
10188           sub1node->cd();
10189           //
10190           // Place copy #4 of ITS6 in I569
10191           //
10192           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,35.1903,"");
10193           sub2node->SetLineColor(kColorITS);
10194           sub2node->SetVisibility(1);  
10195           //fNodes->Add(sub2node);
10196           sub1node->cd();
10197           //
10198           // Place copy #5 of ITS6 in I569
10199           //
10200           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,31.2803,"rot532");
10201           sub2node->SetLineColor(kColorITS);
10202           sub2node->SetVisibility(1);
10203           //fNodes->Add(sub2node);
10204           sub1node->cd();
10205           //
10206           // Place copy #6 of ITS6 in I569
10207           //
10208           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,27.3703,"");
10209           sub2node->SetLineColor(kColorITS);
10210           sub2node->SetVisibility(1);
10211           //fNodes->Add(sub2node);
10212           sub1node->cd();
10213           //
10214           // Place copy #7 of ITS6 in I569
10215           //
10216           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,23.4603,"rot532");
10217           sub2node->SetLineColor(kColorITS);
10218           sub2node->SetVisibility(1);   
10219           //fNodes->Add(sub2node);
10220           sub1node->cd();
10221           //
10222           // Place copy #8 of ITS6 in I569
10223           //
10224           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,19.5503,"");
10225           sub2node->SetLineColor(kColorITS);
10226           sub2node->SetVisibility(1);
10227           //fNodes->Add(sub2node);
10228           sub1node->cd();
10229           //
10230           // Place copy #9 of ITS6 in I569
10231           //
10232           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,15.6403,"rot532");
10233           sub2node->SetLineColor(kColorITS);
10234           sub2node->SetVisibility(1);  
10235           //fNodes->Add(sub2node);
10236           sub1node->cd();
10237           //
10238           // Place copy #10 of ITS6 in I569
10239           //
10240           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,11.7303,"");
10241           sub2node->SetLineColor(kColorITS);
10242           sub2node->SetVisibility(1);
10243           //fNodes->Add(sub2node);
10244           sub1node->cd();
10245           //
10246           // Place copy #11 of ITS6 in I569
10247           //
10248           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,7.8203,"rot532");
10249           sub2node->SetLineColor(kColorITS);
10250           sub2node->SetVisibility(1);
10251           //fNodes->Add(sub2node);
10252           sub1node->cd();
10253           //
10254           // Place copy #12 of ITS6 in I569
10255           //
10256           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,3.9103,"");
10257           sub2node->SetLineColor(kColorITS);
10258           sub2node->SetVisibility(1);
10259           //fNodes->Add(sub2node);
10260           sub1node->cd();
10261           //
10262           // Place copy #13 of ITS6 in I569
10263           //
10264           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,0.0003,"");
10265           sub2node->SetLineColor(kColorITS);
10266           sub2node->SetVisibility(1);  
10267           //fNodes->Add(sub2node);
10268           sub1node->cd();
10269           //
10270           // Place copy #14 of ITS6 in I569
10271           //
10272           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-3.9097,"");
10273           sub2node->SetLineColor(kColorITS);
10274           sub2node->SetVisibility(1);
10275           //fNodes->Add(sub2node);
10276           sub1node->cd();
10277           //
10278           // Place copy #15 of ITS6 in I569
10279           //
10280           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-7.8197,"rot532");
10281           sub2node->SetLineColor(kColorITS);
10282           sub2node->SetVisibility(1);
10283           //fNodes->Add(sub2node);
10284           sub1node->cd();
10285           //
10286           // Place copy #16 of ITS6 in I569
10287           //
10288           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-11.7297,"");
10289           sub2node->SetLineColor(kColorITS);
10290           sub2node->SetVisibility(1);
10291           //fNodes->Add(sub2node);
10292           sub1node->cd();
10293           //
10294           // Place copy #17 of ITS6 in I569
10295           //
10296           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-15.6397,"");
10297           sub2node->SetLineColor(kColorITS);
10298           sub2node->SetVisibility(1);
10299           //fNodes->Add(sub2node);
10300           sub1node->cd();
10301           //
10302           // Place copy #18 of ITS6 in I569
10303           //
10304           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-19.5497,"");
10305           sub2node->SetLineColor(kColorITS);
10306           sub2node->SetVisibility(1);
10307           //fNodes->Add(sub2node);
10308           sub1node->cd();
10309           //
10310           // Place copy #19 of ITS6 in I569
10311           //
10312           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-23.4597,"rot532");
10313           sub2node->SetLineColor(kColorITS);
10314           sub2node->SetVisibility(1);   
10315           //fNodes->Add(sub2node);
10316           sub1node->cd();
10317           //
10318           // Place copy #20 of ITS6 in I569
10319           //
10320           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-27.3697,"");
10321           sub2node->SetLineColor(kColorITS);
10322           sub2node->SetVisibility(1);
10323           //fNodes->Add(sub2node);
10324           sub1node->cd();
10325           //
10326           // Place copy #21 of ITS6 in I569
10327           //
10328           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-31.2797,"rot532");
10329           sub2node->SetLineColor(kColorITS);
10330           sub2node->SetVisibility(1);
10331           //fNodes->Add(sub2node);
10332           sub1node->cd();
10333           //
10334           // Place copy #22 of ITS6 in I569
10335           //
10336           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-35.1897,"");
10337           sub2node->SetLineColor(kColorITS);
10338           sub2node->SetVisibility(1);
10339           //fNodes->Add(sub2node);
10340           sub1node->cd();
10341           //
10342           // Place copy #23 of ITS6 in I569
10343           //
10344           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-39.0997,"");
10345           sub2node->SetLineColor(kColorITS);
10346           sub2node->SetVisibility(1);
10347           //fNodes->Add(sub2node);
10348           sub1node->cd();
10349           //
10350           // Place copy #24 of ITS6 in I569
10351           //
10352           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-43.0097,"");
10353           sub2node->SetLineColor(kColorITS);
10354           sub2node->SetVisibility(1); 
10355           //fNodes->Add(sub2node);
10356           sub1node->cd();
10357           //
10358           // Place copy #25 of ITS6 in I569
10359           //
10360           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-46.9197,"rot532");
10361           sub2node->SetLineColor(kColorITS);
10362           sub2node->SetVisibility(1);
10363           //fNodes->Add(sub2node);
10364           sub1node->cd();                                                                                                                                                                                         
10365        //fNodes->Add(sub1node);
10366        node->cd();
10367        //
10368        // Place copy #18 of I569 in IT56
10369        //
10370        sub1node = new TNode("I569","I569","I569",0.,-43.6977,0.,"rot533");
10371        sub1node->SetLineColor(kColorITS);
10372        sub1node->SetVisibility(0);
10373        sub1node->cd();
10374           //
10375           // Place copy #1 of ITS6 in I569
10376           //
10377           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,46.9203,"rot532");
10378           sub2node->SetLineColor(kColorITS);
10379           sub2node->SetVisibility(1);
10380           //fNodes->Add(sub2node);
10381           sub1node->cd();
10382           //
10383           // Place copy #2 of ITS6 in I569
10384           //
10385           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,43.0103,"");
10386           sub2node->SetLineColor(kColorITS);
10387           sub2node->SetVisibility(1);
10388           //fNodes->Add(sub2node);
10389           sub1node->cd();
10390           //
10391           // Place copy #3 of ITS6 in I569
10392           //
10393           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,39.1003,"rot532");
10394           sub2node->SetLineColor(kColorITS);
10395           sub2node->SetVisibility(1);
10396           //fNodes->Add(sub2node);
10397           sub1node->cd();
10398           //
10399           // Place copy #4 of ITS6 in I569
10400           //
10401           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,35.1903,"");
10402           sub2node->SetLineColor(kColorITS);
10403           sub2node->SetVisibility(1);  
10404           //fNodes->Add(sub2node);
10405           sub1node->cd();
10406           //
10407           // Place copy #5 of ITS6 in I569
10408           //
10409           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,31.2803,"rot532");
10410           sub2node->SetLineColor(kColorITS);
10411           sub2node->SetVisibility(1);
10412           //fNodes->Add(sub2node);
10413           sub1node->cd();
10414           //
10415           // Place copy #6 of ITS6 in I569
10416           //
10417           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,27.3703,"");
10418           sub2node->SetLineColor(kColorITS);
10419           sub2node->SetVisibility(1);
10420           //fNodes->Add(sub2node);
10421           sub1node->cd();
10422           //
10423           // Place copy #7 of ITS6 in I569
10424           //
10425           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,23.4603,"rot532");
10426           sub2node->SetLineColor(kColorITS);
10427           sub2node->SetVisibility(1);   
10428           //fNodes->Add(sub2node);
10429           sub1node->cd();
10430           //
10431           // Place copy #8 of ITS6 in I569
10432           //
10433           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,19.5503,"");
10434           sub2node->SetLineColor(kColorITS);
10435           sub2node->SetVisibility(1);
10436           //fNodes->Add(sub2node);
10437           sub1node->cd();
10438           //
10439           // Place copy #9 of ITS6 in I569
10440           //
10441           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,15.6403,"rot532");
10442           sub2node->SetLineColor(kColorITS);
10443           sub2node->SetVisibility(1);  
10444           //fNodes->Add(sub2node);
10445           sub1node->cd();
10446           //
10447           // Place copy #10 of ITS6 in I569
10448           //
10449           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,11.7303,"");
10450           sub2node->SetLineColor(kColorITS);
10451           sub2node->SetVisibility(1);
10452           //fNodes->Add(sub2node);
10453           sub1node->cd();
10454           //
10455           // Place copy #11 of ITS6 in I569
10456           //
10457           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,7.8203,"rot532");
10458           sub2node->SetLineColor(kColorITS);
10459           sub2node->SetVisibility(1);
10460           //fNodes->Add(sub2node);
10461           sub1node->cd();
10462           //
10463           // Place copy #12 of ITS6 in I569
10464           //
10465           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,3.9103,"");
10466           sub2node->SetLineColor(kColorITS);
10467           sub2node->SetVisibility(1);
10468           //fNodes->Add(sub2node);
10469           sub1node->cd();
10470           //
10471           // Place copy #13 of ITS6 in I569
10472           //
10473           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,0.0003,"");
10474           sub2node->SetLineColor(kColorITS);
10475           sub2node->SetVisibility(1);  
10476           //fNodes->Add(sub2node);
10477           sub1node->cd();
10478           //
10479           // Place copy #14 of ITS6 in I569
10480           //
10481           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-3.9097,"");
10482           sub2node->SetLineColor(kColorITS);
10483           sub2node->SetVisibility(1);
10484           //fNodes->Add(sub2node);
10485           sub1node->cd();
10486           //
10487           // Place copy #15 of ITS6 in I569
10488           //
10489           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-7.8197,"rot532");
10490           sub2node->SetLineColor(kColorITS);
10491           sub2node->SetVisibility(1);
10492           //fNodes->Add(sub2node);
10493           sub1node->cd();
10494           //
10495           // Place copy #16 of ITS6 in I569
10496           //
10497           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-11.7297,"");
10498           sub2node->SetLineColor(kColorITS);
10499           sub2node->SetVisibility(1);
10500           //fNodes->Add(sub2node);
10501           sub1node->cd();
10502           //
10503           // Place copy #17 of ITS6 in I569
10504           //
10505           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-15.6397,"");
10506           sub2node->SetLineColor(kColorITS);
10507           sub2node->SetVisibility(1);
10508           //fNodes->Add(sub2node);
10509           sub1node->cd();
10510           //
10511           // Place copy #18 of ITS6 in I569
10512           //
10513           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-19.5497,"");
10514           sub2node->SetLineColor(kColorITS);
10515           sub2node->SetVisibility(1);
10516           //fNodes->Add(sub2node);
10517           sub1node->cd();
10518           //
10519           // Place copy #19 of ITS6 in I569
10520           //
10521           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-23.4597,"rot532");
10522           sub2node->SetLineColor(kColorITS);
10523           sub2node->SetVisibility(1);   
10524           //fNodes->Add(sub2node);
10525           sub1node->cd();
10526           //
10527           // Place copy #20 of ITS6 in I569
10528           //
10529           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-27.3697,"");
10530           sub2node->SetLineColor(kColorITS);
10531           sub2node->SetVisibility(1);
10532           //fNodes->Add(sub2node);
10533           sub1node->cd();
10534           //
10535           // Place copy #21 of ITS6 in I569
10536           //
10537           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-31.2797,"rot532");
10538           sub2node->SetLineColor(kColorITS);
10539           sub2node->SetVisibility(1);
10540           //fNodes->Add(sub2node);
10541           sub1node->cd();
10542           //
10543           // Place copy #22 of ITS6 in I569
10544           //
10545           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-35.1897,"");
10546           sub2node->SetLineColor(kColorITS);
10547           sub2node->SetVisibility(1);
10548           //fNodes->Add(sub2node);
10549           sub1node->cd();
10550           //
10551           // Place copy #23 of ITS6 in I569
10552           //
10553           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-39.0997,"");
10554           sub2node->SetLineColor(kColorITS);
10555           sub2node->SetVisibility(1);
10556           //fNodes->Add(sub2node);
10557           sub1node->cd();
10558           //
10559           // Place copy #24 of ITS6 in I569
10560           //
10561           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-43.0097,"");
10562           sub2node->SetLineColor(kColorITS);
10563           sub2node->SetVisibility(1); 
10564           //fNodes->Add(sub2node);
10565           sub1node->cd();
10566           //
10567           // Place copy #25 of ITS6 in I569
10568           //
10569           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-46.9197,"rot532");
10570           sub2node->SetLineColor(kColorITS);
10571           sub2node->SetVisibility(1);
10572           //fNodes->Add(sub2node);
10573           sub1node->cd();                                                                                                                                                                                         
10574        //fNodes->Add(sub1node);
10575        node->cd();
10576        //
10577        // Place copy #19 of I569 in IT56
10578        //
10579        sub1node = new TNode("I569","I569","I569",7.1673,-42.9511,0.,"rot534");
10580        sub1node->SetLineColor(kColorITS);
10581        sub1node->SetVisibility(0);
10582        sub1node->cd();
10583           //
10584           // Place copy #1 of ITS6 in I569
10585           //
10586           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,46.9203,"rot532");
10587           sub2node->SetLineColor(kColorITS);
10588           sub2node->SetVisibility(1);
10589           //fNodes->Add(sub2node);
10590           sub1node->cd();
10591           //
10592           // Place copy #2 of ITS6 in I569
10593           //
10594           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,43.0103,"");
10595           sub2node->SetLineColor(kColorITS);
10596           sub2node->SetVisibility(1);
10597           //fNodes->Add(sub2node);
10598           sub1node->cd();
10599           //
10600           // Place copy #3 of ITS6 in I569
10601           //
10602           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,39.1003,"rot532");
10603           sub2node->SetLineColor(kColorITS);
10604           sub2node->SetVisibility(1);
10605           //fNodes->Add(sub2node);
10606           sub1node->cd();
10607           //
10608           // Place copy #4 of ITS6 in I569
10609           //
10610           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,35.1903,"");
10611           sub2node->SetLineColor(kColorITS);
10612           sub2node->SetVisibility(1);  
10613           //fNodes->Add(sub2node);
10614           sub1node->cd();
10615           //
10616           // Place copy #5 of ITS6 in I569
10617           //
10618           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,31.2803,"rot532");
10619           sub2node->SetLineColor(kColorITS);
10620           sub2node->SetVisibility(1);
10621           //fNodes->Add(sub2node);
10622           sub1node->cd();
10623           //
10624           // Place copy #6 of ITS6 in I569
10625           //
10626           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,27.3703,"");
10627           sub2node->SetLineColor(kColorITS);
10628           sub2node->SetVisibility(1);
10629           //fNodes->Add(sub2node);
10630           sub1node->cd();
10631           //
10632           // Place copy #7 of ITS6 in I569
10633           //
10634           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,23.4603,"rot532");
10635           sub2node->SetLineColor(kColorITS);
10636           sub2node->SetVisibility(1);   
10637           //fNodes->Add(sub2node);
10638           sub1node->cd();
10639           //
10640           // Place copy #8 of ITS6 in I569
10641           //
10642           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,19.5503,"");
10643           sub2node->SetLineColor(kColorITS);
10644           sub2node->SetVisibility(1);
10645           //fNodes->Add(sub2node);
10646           sub1node->cd();
10647           //
10648           // Place copy #9 of ITS6 in I569
10649           //
10650           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,15.6403,"rot532");
10651           sub2node->SetLineColor(kColorITS);
10652           sub2node->SetVisibility(1);  
10653           //fNodes->Add(sub2node);
10654           sub1node->cd();
10655           //
10656           // Place copy #10 of ITS6 in I569
10657           //
10658           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,11.7303,"");
10659           sub2node->SetLineColor(kColorITS);
10660           sub2node->SetVisibility(1);
10661           //fNodes->Add(sub2node);
10662           sub1node->cd();
10663           //
10664           // Place copy #11 of ITS6 in I569
10665           //
10666           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,7.8203,"rot532");
10667           sub2node->SetLineColor(kColorITS);
10668           sub2node->SetVisibility(1);
10669           //fNodes->Add(sub2node);
10670           sub1node->cd();
10671           //
10672           // Place copy #12 of ITS6 in I569
10673           //
10674           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,3.9103,"");
10675           sub2node->SetLineColor(kColorITS);
10676           sub2node->SetVisibility(1);
10677           //fNodes->Add(sub2node);
10678           sub1node->cd();
10679           //
10680           // Place copy #13 of ITS6 in I569
10681           //
10682           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,0.0003,"");
10683           sub2node->SetLineColor(kColorITS);
10684           sub2node->SetVisibility(1);  
10685           //fNodes->Add(sub2node);
10686           sub1node->cd();
10687           //
10688           // Place copy #14 of ITS6 in I569
10689           //
10690           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-3.9097,"");
10691           sub2node->SetLineColor(kColorITS);
10692           sub2node->SetVisibility(1);
10693           //fNodes->Add(sub2node);
10694           sub1node->cd();
10695           //
10696           // Place copy #15 of ITS6 in I569
10697           //
10698           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-7.8197,"rot532");
10699           sub2node->SetLineColor(kColorITS);
10700           sub2node->SetVisibility(1);
10701           //fNodes->Add(sub2node);
10702           sub1node->cd();
10703           //
10704           // Place copy #16 of ITS6 in I569
10705           //
10706           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-11.7297,"");
10707           sub2node->SetLineColor(kColorITS);
10708           sub2node->SetVisibility(1);
10709           //fNodes->Add(sub2node);
10710           sub1node->cd();
10711           //
10712           // Place copy #17 of ITS6 in I569
10713           //
10714           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-15.6397,"");
10715           sub2node->SetLineColor(kColorITS);
10716           sub2node->SetVisibility(1);
10717           //fNodes->Add(sub2node);
10718           sub1node->cd();
10719           //
10720           // Place copy #18 of ITS6 in I569
10721           //
10722           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-19.5497,"");
10723           sub2node->SetLineColor(kColorITS);
10724           sub2node->SetVisibility(1);
10725           //fNodes->Add(sub2node);
10726           sub1node->cd();
10727           //
10728           // Place copy #19 of ITS6 in I569
10729           //
10730           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-23.4597,"rot532");
10731           sub2node->SetLineColor(kColorITS);
10732           sub2node->SetVisibility(1);   
10733           //fNodes->Add(sub2node);
10734           sub1node->cd();
10735           //
10736           // Place copy #20 of ITS6 in I569
10737           //
10738           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-27.3697,"");
10739           sub2node->SetLineColor(kColorITS);
10740           sub2node->SetVisibility(1);
10741           //fNodes->Add(sub2node);
10742           sub1node->cd();
10743           //
10744           // Place copy #21 of ITS6 in I569
10745           //
10746           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-31.2797,"rot532");
10747           sub2node->SetLineColor(kColorITS);
10748           sub2node->SetVisibility(1);
10749           //fNodes->Add(sub2node);
10750           sub1node->cd();
10751           //
10752           // Place copy #22 of ITS6 in I569
10753           //
10754           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-35.1897,"");
10755           sub2node->SetLineColor(kColorITS);
10756           sub2node->SetVisibility(1);
10757           //fNodes->Add(sub2node);
10758           sub1node->cd();
10759           //
10760           // Place copy #23 of ITS6 in I569
10761           //
10762           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-39.0997,"");
10763           sub2node->SetLineColor(kColorITS);
10764           sub2node->SetVisibility(1);
10765           //fNodes->Add(sub2node);
10766           sub1node->cd();
10767           //
10768           // Place copy #24 of ITS6 in I569
10769           //
10770           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-43.0097,"");
10771           sub2node->SetLineColor(kColorITS);
10772           sub2node->SetVisibility(1); 
10773           //fNodes->Add(sub2node);
10774           sub1node->cd();
10775           //
10776           // Place copy #25 of ITS6 in I569
10777           //
10778           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-46.9197,"rot532");
10779           sub2node->SetLineColor(kColorITS);
10780           sub2node->SetVisibility(1);
10781           //fNodes->Add(sub2node);
10782           sub1node->cd();                                                                                                                                                                                         
10783        //fNodes->Add(sub1node);
10784        node->cd();
10785        //
10786        // Place copy #20 of I569 in IT56
10787        //
10788        sub1node = new TNode("I569","I569","I569",14.1886,-41.33,0.,"rot535");
10789        sub1node->SetLineColor(kColorITS);
10790        sub1node->SetVisibility(0);
10791        sub1node->cd();
10792           //
10793           // Place copy #1 of ITS6 in I569
10794           //
10795           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,46.9203,"rot532");
10796           sub2node->SetLineColor(kColorITS);
10797           sub2node->SetVisibility(1);
10798           //fNodes->Add(sub2node);
10799           sub1node->cd();
10800           //
10801           // Place copy #2 of ITS6 in I569
10802           //
10803           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,43.0103,"");
10804           sub2node->SetLineColor(kColorITS);
10805           sub2node->SetVisibility(1);
10806           //fNodes->Add(sub2node);
10807           sub1node->cd();
10808           //
10809           // Place copy #3 of ITS6 in I569
10810           //
10811           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,39.1003,"rot532");
10812           sub2node->SetLineColor(kColorITS);
10813           sub2node->SetVisibility(1);
10814           //fNodes->Add(sub2node);
10815           sub1node->cd();
10816           //
10817           // Place copy #4 of ITS6 in I569
10818           //
10819           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,35.1903,"");
10820           sub2node->SetLineColor(kColorITS);
10821           sub2node->SetVisibility(1);  
10822           //fNodes->Add(sub2node);
10823           sub1node->cd();
10824           //
10825           // Place copy #5 of ITS6 in I569
10826           //
10827           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,31.2803,"rot532");
10828           sub2node->SetLineColor(kColorITS);
10829           sub2node->SetVisibility(1);
10830           //fNodes->Add(sub2node);
10831           sub1node->cd();
10832           //
10833           // Place copy #6 of ITS6 in I569
10834           //
10835           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,27.3703,"");
10836           sub2node->SetLineColor(kColorITS);
10837           sub2node->SetVisibility(1);
10838           //fNodes->Add(sub2node);
10839           sub1node->cd();
10840           //
10841           // Place copy #7 of ITS6 in I569
10842           //
10843           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,23.4603,"rot532");
10844           sub2node->SetLineColor(kColorITS);
10845           sub2node->SetVisibility(1);   
10846           //fNodes->Add(sub2node);
10847           sub1node->cd();
10848           //
10849           // Place copy #8 of ITS6 in I569
10850           //
10851           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,19.5503,"");
10852           sub2node->SetLineColor(kColorITS);
10853           sub2node->SetVisibility(1);
10854           //fNodes->Add(sub2node);
10855           sub1node->cd();
10856           //
10857           // Place copy #9 of ITS6 in I569
10858           //
10859           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,15.6403,"rot532");
10860           sub2node->SetLineColor(kColorITS);
10861           sub2node->SetVisibility(1);  
10862           //fNodes->Add(sub2node);
10863           sub1node->cd();
10864           //
10865           // Place copy #10 of ITS6 in I569
10866           //
10867           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,11.7303,"");
10868           sub2node->SetLineColor(kColorITS);
10869           sub2node->SetVisibility(1);
10870           //fNodes->Add(sub2node);
10871           sub1node->cd();
10872           //
10873           // Place copy #11 of ITS6 in I569
10874           //
10875           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,7.8203,"rot532");
10876           sub2node->SetLineColor(kColorITS);
10877           sub2node->SetVisibility(1);
10878           //fNodes->Add(sub2node);
10879           sub1node->cd();
10880           //
10881           // Place copy #12 of ITS6 in I569
10882           //
10883           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,3.9103,"");
10884           sub2node->SetLineColor(kColorITS);
10885           sub2node->SetVisibility(1);
10886           //fNodes->Add(sub2node);
10887           sub1node->cd();
10888           //
10889           // Place copy #13 of ITS6 in I569
10890           //
10891           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,0.0003,"");
10892           sub2node->SetLineColor(kColorITS);
10893           sub2node->SetVisibility(1);  
10894           //fNodes->Add(sub2node);
10895           sub1node->cd();
10896           //
10897           // Place copy #14 of ITS6 in I569
10898           //
10899           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-3.9097,"");
10900           sub2node->SetLineColor(kColorITS);
10901           sub2node->SetVisibility(1);
10902           //fNodes->Add(sub2node);
10903           sub1node->cd();
10904           //
10905           // Place copy #15 of ITS6 in I569
10906           //
10907           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-7.8197,"rot532");
10908           sub2node->SetLineColor(kColorITS);
10909           sub2node->SetVisibility(1);
10910           //fNodes->Add(sub2node);
10911           sub1node->cd();
10912           //
10913           // Place copy #16 of ITS6 in I569
10914           //
10915           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-11.7297,"");
10916           sub2node->SetLineColor(kColorITS);
10917           sub2node->SetVisibility(1);
10918           //fNodes->Add(sub2node);
10919           sub1node->cd();
10920           //
10921           // Place copy #17 of ITS6 in I569
10922           //
10923           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-15.6397,"");
10924           sub2node->SetLineColor(kColorITS);
10925           sub2node->SetVisibility(1);
10926           //fNodes->Add(sub2node);
10927           sub1node->cd();
10928           //
10929           // Place copy #18 of ITS6 in I569
10930           //
10931           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-19.5497,"");
10932           sub2node->SetLineColor(kColorITS);
10933           sub2node->SetVisibility(1);
10934           //fNodes->Add(sub2node);
10935           sub1node->cd();
10936           //
10937           // Place copy #19 of ITS6 in I569
10938           //
10939           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-23.4597,"rot532");
10940           sub2node->SetLineColor(kColorITS);
10941           sub2node->SetVisibility(1);   
10942           //fNodes->Add(sub2node);
10943           sub1node->cd();
10944           //
10945           // Place copy #20 of ITS6 in I569
10946           //
10947           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-27.3697,"");
10948           sub2node->SetLineColor(kColorITS);
10949           sub2node->SetVisibility(1);
10950           //fNodes->Add(sub2node);
10951           sub1node->cd();
10952           //
10953           // Place copy #21 of ITS6 in I569
10954           //
10955           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-31.2797,"rot532");
10956           sub2node->SetLineColor(kColorITS);
10957           sub2node->SetVisibility(1);
10958           //fNodes->Add(sub2node);
10959           sub1node->cd();
10960           //
10961           // Place copy #22 of ITS6 in I569
10962           //
10963           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-35.1897,"");
10964           sub2node->SetLineColor(kColorITS);
10965           sub2node->SetVisibility(1);
10966           //fNodes->Add(sub2node);
10967           sub1node->cd();
10968           //
10969           // Place copy #23 of ITS6 in I569
10970           //
10971           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-39.0997,"");
10972           sub2node->SetLineColor(kColorITS);
10973           sub2node->SetVisibility(1);
10974           //fNodes->Add(sub2node);
10975           sub1node->cd();
10976           //
10977           // Place copy #24 of ITS6 in I569
10978           //
10979           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-43.0097,"");
10980           sub2node->SetLineColor(kColorITS);
10981           sub2node->SetVisibility(1); 
10982           //fNodes->Add(sub2node);
10983           sub1node->cd();
10984           //
10985           // Place copy #25 of ITS6 in I569
10986           //
10987           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-46.9197,"rot532");
10988           sub2node->SetLineColor(kColorITS);
10989           sub2node->SetVisibility(1);
10990           //fNodes->Add(sub2node);
10991           sub1node->cd();                                                                                                                                                                                         
10992        //fNodes->Add(sub1node);
10993        node->cd();
10994        //
10995        // Place copy #21 of I569 in IT56
10996        //
10997        sub1node = new TNode("I569","I569","I569",20.7251,-38.2967,0.,"rot623");
10998        sub1node->SetLineColor(kColorITS);
10999        sub1node->SetVisibility(0);
11000        sub1node->cd();
11001           //
11002           // Place copy #1 of ITS6 in I569
11003           //
11004           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,46.9203,"rot532");
11005           sub2node->SetLineColor(kColorITS);
11006           sub2node->SetVisibility(1);
11007           //fNodes->Add(sub2node);
11008           sub1node->cd();
11009           //
11010           // Place copy #2 of ITS6 in I569
11011           //
11012           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,43.0103,"");
11013           sub2node->SetLineColor(kColorITS);
11014           sub2node->SetVisibility(1);
11015           //fNodes->Add(sub2node);
11016           sub1node->cd();
11017           //
11018           // Place copy #3 of ITS6 in I569
11019           //
11020           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,39.1003,"rot532");
11021           sub2node->SetLineColor(kColorITS);
11022           sub2node->SetVisibility(1);
11023           //fNodes->Add(sub2node);
11024           sub1node->cd();
11025           //
11026           // Place copy #4 of ITS6 in I569
11027           //
11028           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,35.1903,"");
11029           sub2node->SetLineColor(kColorITS);
11030           sub2node->SetVisibility(1);  
11031           //fNodes->Add(sub2node);
11032           sub1node->cd();
11033           //
11034           // Place copy #5 of ITS6 in I569
11035           //
11036           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,31.2803,"rot532");
11037           sub2node->SetLineColor(kColorITS);
11038           sub2node->SetVisibility(1);
11039           //fNodes->Add(sub2node);
11040           sub1node->cd();
11041           //
11042           // Place copy #6 of ITS6 in I569
11043           //
11044           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,27.3703,"");
11045           sub2node->SetLineColor(kColorITS);
11046           sub2node->SetVisibility(1);
11047           //fNodes->Add(sub2node);
11048           sub1node->cd();
11049           //
11050           // Place copy #7 of ITS6 in I569
11051           //
11052           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,23.4603,"rot532");
11053           sub2node->SetLineColor(kColorITS);
11054           sub2node->SetVisibility(1);   
11055           //fNodes->Add(sub2node);
11056           sub1node->cd();
11057           //
11058           // Place copy #8 of ITS6 in I569
11059           //
11060           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,19.5503,"");
11061           sub2node->SetLineColor(kColorITS);
11062           sub2node->SetVisibility(1);
11063           //fNodes->Add(sub2node);
11064           sub1node->cd();
11065           //
11066           // Place copy #9 of ITS6 in I569
11067           //
11068           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,15.6403,"rot532");
11069           sub2node->SetLineColor(kColorITS);
11070           sub2node->SetVisibility(1);  
11071           //fNodes->Add(sub2node);
11072           sub1node->cd();
11073           //
11074           // Place copy #10 of ITS6 in I569
11075           //
11076           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,11.7303,"");
11077           sub2node->SetLineColor(kColorITS);
11078           sub2node->SetVisibility(1);
11079           //fNodes->Add(sub2node);
11080           sub1node->cd();
11081           //
11082           // Place copy #11 of ITS6 in I569
11083           //
11084           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,7.8203,"rot532");
11085           sub2node->SetLineColor(kColorITS);
11086           sub2node->SetVisibility(1);
11087           //fNodes->Add(sub2node);
11088           sub1node->cd();
11089           //
11090           // Place copy #12 of ITS6 in I569
11091           //
11092           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,3.9103,"");
11093           sub2node->SetLineColor(kColorITS);
11094           sub2node->SetVisibility(1);
11095           //fNodes->Add(sub2node);
11096           sub1node->cd();
11097           //
11098           // Place copy #13 of ITS6 in I569
11099           //
11100           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,0.0003,"");
11101           sub2node->SetLineColor(kColorITS);
11102           sub2node->SetVisibility(1);  
11103           //fNodes->Add(sub2node);
11104           sub1node->cd();
11105           //
11106           // Place copy #14 of ITS6 in I569
11107           //
11108           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-3.9097,"");
11109           sub2node->SetLineColor(kColorITS);
11110           sub2node->SetVisibility(1);
11111           //fNodes->Add(sub2node);
11112           sub1node->cd();
11113           //
11114           // Place copy #15 of ITS6 in I569
11115           //
11116           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-7.8197,"rot532");
11117           sub2node->SetLineColor(kColorITS);
11118           sub2node->SetVisibility(1);
11119           //fNodes->Add(sub2node);
11120           sub1node->cd();
11121           //
11122           // Place copy #16 of ITS6 in I569
11123           //
11124           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-11.7297,"");
11125           sub2node->SetLineColor(kColorITS);
11126           sub2node->SetVisibility(1);
11127           //fNodes->Add(sub2node);
11128           sub1node->cd();
11129           //
11130           // Place copy #17 of ITS6 in I569
11131           //
11132           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-15.6397,"");
11133           sub2node->SetLineColor(kColorITS);
11134           sub2node->SetVisibility(1);
11135           //fNodes->Add(sub2node);
11136           sub1node->cd();
11137           //
11138           // Place copy #18 of ITS6 in I569
11139           //
11140           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-19.5497,"");
11141           sub2node->SetLineColor(kColorITS);
11142           sub2node->SetVisibility(1);
11143           //fNodes->Add(sub2node);
11144           sub1node->cd();
11145           //
11146           // Place copy #19 of ITS6 in I569
11147           //
11148           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-23.4597,"rot532");
11149           sub2node->SetLineColor(kColorITS);
11150           sub2node->SetVisibility(1);   
11151           //fNodes->Add(sub2node);
11152           sub1node->cd();
11153           //
11154           // Place copy #20 of ITS6 in I569
11155           //
11156           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-27.3697,"");
11157           sub2node->SetLineColor(kColorITS);
11158           sub2node->SetVisibility(1);
11159           //fNodes->Add(sub2node);
11160           sub1node->cd();
11161           //
11162           // Place copy #21 of ITS6 in I569
11163           //
11164           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-31.2797,"rot532");
11165           sub2node->SetLineColor(kColorITS);
11166           sub2node->SetVisibility(1);
11167           //fNodes->Add(sub2node);
11168           sub1node->cd();
11169           //
11170           // Place copy #22 of ITS6 in I569
11171           //
11172           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-35.1897,"");
11173           sub2node->SetLineColor(kColorITS);
11174           sub2node->SetVisibility(1);
11175           //fNodes->Add(sub2node);
11176           sub1node->cd();
11177           //
11178           // Place copy #23 of ITS6 in I569
11179           //
11180           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-39.0997,"");
11181           sub2node->SetLineColor(kColorITS);
11182           sub2node->SetVisibility(1);
11183           //fNodes->Add(sub2node);
11184           sub1node->cd();
11185           //
11186           // Place copy #24 of ITS6 in I569
11187           //
11188           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-43.0097,"");
11189           sub2node->SetLineColor(kColorITS);
11190           sub2node->SetVisibility(1); 
11191           //fNodes->Add(sub2node);
11192           sub1node->cd();
11193           //
11194           // Place copy #25 of ITS6 in I569
11195           //
11196           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-46.9197,"rot532");
11197           sub2node->SetLineColor(kColorITS);
11198           sub2node->SetVisibility(1);
11199           //fNodes->Add(sub2node);
11200           sub1node->cd();                                                                                                                                                                                         
11201        //fNodes->Add(sub1node);
11202        node->cd();
11203        //
11204        // Place copy #22 of I569 in IT56
11205        //
11206        sub1node = new TNode("I569","I569","I569",26.8397,-34.4836,0.,"rot537");
11207        sub1node->SetLineColor(kColorITS);
11208        sub1node->SetVisibility(0);
11209        sub1node->cd();
11210           //
11211           // Place copy #1 of ITS6 in I569
11212           //
11213           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,46.9203,"rot532");
11214           sub2node->SetLineColor(kColorITS);
11215           sub2node->SetVisibility(1);
11216           //fNodes->Add(sub2node);
11217           sub1node->cd();
11218           //
11219           // Place copy #2 of ITS6 in I569
11220           //
11221           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,43.0103,"");
11222           sub2node->SetLineColor(kColorITS);
11223           sub2node->SetVisibility(1);
11224           //fNodes->Add(sub2node);
11225           sub1node->cd();
11226           //
11227           // Place copy #3 of ITS6 in I569
11228           //
11229           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,39.1003,"rot532");
11230           sub2node->SetLineColor(kColorITS);
11231           sub2node->SetVisibility(1);
11232           //fNodes->Add(sub2node);
11233           sub1node->cd();
11234           //
11235           // Place copy #4 of ITS6 in I569
11236           //
11237           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,35.1903,"");
11238           sub2node->SetLineColor(kColorITS);
11239           sub2node->SetVisibility(1);  
11240           //fNodes->Add(sub2node);
11241           sub1node->cd();
11242           //
11243           // Place copy #5 of ITS6 in I569
11244           //
11245           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,31.2803,"rot532");
11246           sub2node->SetLineColor(kColorITS);
11247           sub2node->SetVisibility(1);
11248           //fNodes->Add(sub2node);
11249           sub1node->cd();
11250           //
11251           // Place copy #6 of ITS6 in I569
11252           //
11253           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,27.3703,"");
11254           sub2node->SetLineColor(kColorITS);
11255           sub2node->SetVisibility(1);
11256           //fNodes->Add(sub2node);
11257           sub1node->cd();
11258           //
11259           // Place copy #7 of ITS6 in I569
11260           //
11261           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,23.4603,"rot532");
11262           sub2node->SetLineColor(kColorITS);
11263           sub2node->SetVisibility(1);   
11264           //fNodes->Add(sub2node);
11265           sub1node->cd();
11266           //
11267           // Place copy #8 of ITS6 in I569
11268           //
11269           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,19.5503,"");
11270           sub2node->SetLineColor(kColorITS);
11271           sub2node->SetVisibility(1);
11272           //fNodes->Add(sub2node);
11273           sub1node->cd();
11274           //
11275           // Place copy #9 of ITS6 in I569
11276           //
11277           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,15.6403,"rot532");
11278           sub2node->SetLineColor(kColorITS);
11279           sub2node->SetVisibility(1);  
11280           //fNodes->Add(sub2node);
11281           sub1node->cd();
11282           //
11283           // Place copy #10 of ITS6 in I569
11284           //
11285           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,11.7303,"");
11286           sub2node->SetLineColor(kColorITS);
11287           sub2node->SetVisibility(1);
11288           //fNodes->Add(sub2node);
11289           sub1node->cd();
11290           //
11291           // Place copy #11 of ITS6 in I569
11292           //
11293           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,7.8203,"rot532");
11294           sub2node->SetLineColor(kColorITS);
11295           sub2node->SetVisibility(1);
11296           //fNodes->Add(sub2node);
11297           sub1node->cd();
11298           //
11299           // Place copy #12 of ITS6 in I569
11300           //
11301           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,3.9103,"");
11302           sub2node->SetLineColor(kColorITS);
11303           sub2node->SetVisibility(1);
11304           //fNodes->Add(sub2node);
11305           sub1node->cd();
11306           //
11307           // Place copy #13 of ITS6 in I569
11308           //
11309           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,0.0003,"");
11310           sub2node->SetLineColor(kColorITS);
11311           sub2node->SetVisibility(1);  
11312           //fNodes->Add(sub2node);
11313           sub1node->cd();
11314           //
11315           // Place copy #14 of ITS6 in I569
11316           //
11317           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-3.9097,"");
11318           sub2node->SetLineColor(kColorITS);
11319           sub2node->SetVisibility(1);
11320           //fNodes->Add(sub2node);
11321           sub1node->cd();
11322           //
11323           // Place copy #15 of ITS6 in I569
11324           //
11325           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-7.8197,"rot532");
11326           sub2node->SetLineColor(kColorITS);
11327           sub2node->SetVisibility(1);
11328           //fNodes->Add(sub2node);
11329           sub1node->cd();
11330           //
11331           // Place copy #16 of ITS6 in I569
11332           //
11333           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-11.7297,"");
11334           sub2node->SetLineColor(kColorITS);
11335           sub2node->SetVisibility(1);
11336           //fNodes->Add(sub2node);
11337           sub1node->cd();
11338           //
11339           // Place copy #17 of ITS6 in I569
11340           //
11341           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-15.6397,"");
11342           sub2node->SetLineColor(kColorITS);
11343           sub2node->SetVisibility(1);
11344           //fNodes->Add(sub2node);
11345           sub1node->cd();
11346           //
11347           // Place copy #18 of ITS6 in I569
11348           //
11349           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-19.5497,"");
11350           sub2node->SetLineColor(kColorITS);
11351           sub2node->SetVisibility(1);
11352           //fNodes->Add(sub2node);
11353           sub1node->cd();
11354           //
11355           // Place copy #19 of ITS6 in I569
11356           //
11357           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-23.4597,"rot532");
11358           sub2node->SetLineColor(kColorITS);
11359           sub2node->SetVisibility(1);   
11360           //fNodes->Add(sub2node);
11361           sub1node->cd();
11362           //
11363           // Place copy #20 of ITS6 in I569
11364           //
11365           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-27.3697,"");
11366           sub2node->SetLineColor(kColorITS);
11367           sub2node->SetVisibility(1);
11368           //fNodes->Add(sub2node);
11369           sub1node->cd();
11370           //
11371           // Place copy #21 of ITS6 in I569
11372           //
11373           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-31.2797,"rot532");
11374           sub2node->SetLineColor(kColorITS);
11375           sub2node->SetVisibility(1);
11376           //fNodes->Add(sub2node);
11377           sub1node->cd();
11378           //
11379           // Place copy #22 of ITS6 in I569
11380           //
11381           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-35.1897,"");
11382           sub2node->SetLineColor(kColorITS);
11383           sub2node->SetVisibility(1);
11384           //fNodes->Add(sub2node);
11385           sub1node->cd();
11386           //
11387           // Place copy #23 of ITS6 in I569
11388           //
11389           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-39.0997,"");
11390           sub2node->SetLineColor(kColorITS);
11391           sub2node->SetVisibility(1);
11392           //fNodes->Add(sub2node);
11393           sub1node->cd();
11394           //
11395           // Place copy #24 of ITS6 in I569
11396           //
11397           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-43.0097,"");
11398           sub2node->SetLineColor(kColorITS);
11399           sub2node->SetVisibility(1); 
11400           //fNodes->Add(sub2node);
11401           sub1node->cd();
11402           //
11403           // Place copy #25 of ITS6 in I569
11404           //
11405           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-46.9197,"rot532");
11406           sub2node->SetLineColor(kColorITS);
11407           sub2node->SetVisibility(1);
11408           //fNodes->Add(sub2node);
11409           sub1node->cd();                                                                                                                                                                                         
11410        //fNodes->Add(sub1node);
11411        node->cd();
11412        //
11413        // Place copy #23 of I569 in IT56
11414        //
11415        sub1node = new TNode("I569","I569","I569",32.0371,-29.4922,0.,"rot538");
11416        sub1node->SetLineColor(kColorITS);
11417        sub1node->SetVisibility(0);
11418        sub1node->cd();
11419           //
11420           // Place copy #1 of ITS6 in I569
11421           //
11422           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,46.9203,"rot532");
11423           sub2node->SetLineColor(kColorITS);
11424           sub2node->SetVisibility(1);
11425           //fNodes->Add(sub2node);
11426           sub1node->cd();
11427           //
11428           // Place copy #2 of ITS6 in I569
11429           //
11430           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,43.0103,"");
11431           sub2node->SetLineColor(kColorITS);
11432           sub2node->SetVisibility(1);
11433           //fNodes->Add(sub2node);
11434           sub1node->cd();
11435           //
11436           // Place copy #3 of ITS6 in I569
11437           //
11438           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,39.1003,"rot532");
11439           sub2node->SetLineColor(kColorITS);
11440           sub2node->SetVisibility(1);
11441           //fNodes->Add(sub2node);
11442           sub1node->cd();
11443           //
11444           // Place copy #4 of ITS6 in I569
11445           //
11446           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,35.1903,"");
11447           sub2node->SetLineColor(kColorITS);
11448           sub2node->SetVisibility(1);  
11449           //fNodes->Add(sub2node);
11450           sub1node->cd();
11451           //
11452           // Place copy #5 of ITS6 in I569
11453           //
11454           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,31.2803,"rot532");
11455           sub2node->SetLineColor(kColorITS);
11456           sub2node->SetVisibility(1);
11457           //fNodes->Add(sub2node);
11458           sub1node->cd();
11459           //
11460           // Place copy #6 of ITS6 in I569
11461           //
11462           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,27.3703,"");
11463           sub2node->SetLineColor(kColorITS);
11464           sub2node->SetVisibility(1);
11465           //fNodes->Add(sub2node);
11466           sub1node->cd();
11467           //
11468           // Place copy #7 of ITS6 in I569
11469           //
11470           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,23.4603,"rot532");
11471           sub2node->SetLineColor(kColorITS);
11472           sub2node->SetVisibility(1);   
11473           //fNodes->Add(sub2node);
11474           sub1node->cd();
11475           //
11476           // Place copy #8 of ITS6 in I569
11477           //
11478           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,19.5503,"");
11479           sub2node->SetLineColor(kColorITS);
11480           sub2node->SetVisibility(1);
11481           //fNodes->Add(sub2node);
11482           sub1node->cd();
11483           //
11484           // Place copy #9 of ITS6 in I569
11485           //
11486           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,15.6403,"rot532");
11487           sub2node->SetLineColor(kColorITS);
11488           sub2node->SetVisibility(1);  
11489           //fNodes->Add(sub2node);
11490           sub1node->cd();
11491           //
11492           // Place copy #10 of ITS6 in I569
11493           //
11494           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,11.7303,"");
11495           sub2node->SetLineColor(kColorITS);
11496           sub2node->SetVisibility(1);
11497           //fNodes->Add(sub2node);
11498           sub1node->cd();
11499           //
11500           // Place copy #11 of ITS6 in I569
11501           //
11502           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,7.8203,"rot532");
11503           sub2node->SetLineColor(kColorITS);
11504           sub2node->SetVisibility(1);
11505           //fNodes->Add(sub2node);
11506           sub1node->cd();
11507           //
11508           // Place copy #12 of ITS6 in I569
11509           //
11510           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,3.9103,"");
11511           sub2node->SetLineColor(kColorITS);
11512           sub2node->SetVisibility(1);
11513           //fNodes->Add(sub2node);
11514           sub1node->cd();
11515           //
11516           // Place copy #13 of ITS6 in I569
11517           //
11518           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,0.0003,"");
11519           sub2node->SetLineColor(kColorITS);
11520           sub2node->SetVisibility(1);  
11521           //fNodes->Add(sub2node);
11522           sub1node->cd();
11523           //
11524           // Place copy #14 of ITS6 in I569
11525           //
11526           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-3.9097,"");
11527           sub2node->SetLineColor(kColorITS);
11528           sub2node->SetVisibility(1);
11529           //fNodes->Add(sub2node);
11530           sub1node->cd();
11531           //
11532           // Place copy #15 of ITS6 in I569
11533           //
11534           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-7.8197,"rot532");
11535           sub2node->SetLineColor(kColorITS);
11536           sub2node->SetVisibility(1);
11537           //fNodes->Add(sub2node);
11538           sub1node->cd();
11539           //
11540           // Place copy #16 of ITS6 in I569
11541           //
11542           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-11.7297,"");
11543           sub2node->SetLineColor(kColorITS);
11544           sub2node->SetVisibility(1);
11545           //fNodes->Add(sub2node);
11546           sub1node->cd();
11547           //
11548           // Place copy #17 of ITS6 in I569
11549           //
11550           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-15.6397,"");
11551           sub2node->SetLineColor(kColorITS);
11552           sub2node->SetVisibility(1);
11553           //fNodes->Add(sub2node);
11554           sub1node->cd();
11555           //
11556           // Place copy #18 of ITS6 in I569
11557           //
11558           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-19.5497,"");
11559           sub2node->SetLineColor(kColorITS);
11560           sub2node->SetVisibility(1);
11561           //fNodes->Add(sub2node);
11562           sub1node->cd();
11563           //
11564           // Place copy #19 of ITS6 in I569
11565           //
11566           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-23.4597,"rot532");
11567           sub2node->SetLineColor(kColorITS);
11568           sub2node->SetVisibility(1);   
11569           //fNodes->Add(sub2node);
11570           sub1node->cd();
11571           //
11572           // Place copy #20 of ITS6 in I569
11573           //
11574           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-27.3697,"");
11575           sub2node->SetLineColor(kColorITS);
11576           sub2node->SetVisibility(1);
11577           //fNodes->Add(sub2node);
11578           sub1node->cd();
11579           //
11580           // Place copy #21 of ITS6 in I569
11581           //
11582           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-31.2797,"rot532");
11583           sub2node->SetLineColor(kColorITS);
11584           sub2node->SetVisibility(1);
11585           //fNodes->Add(sub2node);
11586           sub1node->cd();
11587           //
11588           // Place copy #22 of ITS6 in I569
11589           //
11590           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-35.1897,"");
11591           sub2node->SetLineColor(kColorITS);
11592           sub2node->SetVisibility(1);
11593           //fNodes->Add(sub2node);
11594           sub1node->cd();
11595           //
11596           // Place copy #23 of ITS6 in I569
11597           //
11598           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-39.0997,"");
11599           sub2node->SetLineColor(kColorITS);
11600           sub2node->SetVisibility(1);
11601           //fNodes->Add(sub2node);
11602           sub1node->cd();
11603           //
11604           // Place copy #24 of ITS6 in I569
11605           //
11606           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-43.0097,"");
11607           sub2node->SetLineColor(kColorITS);
11608           sub2node->SetVisibility(1); 
11609           //fNodes->Add(sub2node);
11610           sub1node->cd();
11611           //
11612           // Place copy #25 of ITS6 in I569
11613           //
11614           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-46.9197,"rot532");
11615           sub2node->SetLineColor(kColorITS);
11616           sub2node->SetVisibility(1);
11617           //fNodes->Add(sub2node);
11618           sub1node->cd();                                                                                                                                                                                         
11619        //fNodes->Add(sub1node);
11620        node->cd();
11621        //
11622        // Place copy #24 of I569 in IT56
11623        //
11624        sub1node = new TNode("I569","I569","I569",36.5822,-23.9004,0.,"rot539");
11625        sub1node->SetLineColor(kColorITS);
11626        sub1node->SetVisibility(0);
11627        sub1node->cd();
11628           //
11629           // Place copy #1 of ITS6 in I569
11630           //
11631           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,46.9203,"rot532");
11632           sub2node->SetLineColor(kColorITS);
11633           sub2node->SetVisibility(1);
11634           //fNodes->Add(sub2node);
11635           sub1node->cd();
11636           //
11637           // Place copy #2 of ITS6 in I569
11638           //
11639           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,43.0103,"");
11640           sub2node->SetLineColor(kColorITS);
11641           sub2node->SetVisibility(1);
11642           //fNodes->Add(sub2node);
11643           sub1node->cd();
11644           //
11645           // Place copy #3 of ITS6 in I569
11646           //
11647           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,39.1003,"rot532");
11648           sub2node->SetLineColor(kColorITS);
11649           sub2node->SetVisibility(1);
11650           //fNodes->Add(sub2node);
11651           sub1node->cd();
11652           //
11653           // Place copy #4 of ITS6 in I569
11654           //
11655           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,35.1903,"");
11656           sub2node->SetLineColor(kColorITS);
11657           sub2node->SetVisibility(1);  
11658           //fNodes->Add(sub2node);
11659           sub1node->cd();
11660           //
11661           // Place copy #5 of ITS6 in I569
11662           //
11663           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,31.2803,"rot532");
11664           sub2node->SetLineColor(kColorITS);
11665           sub2node->SetVisibility(1);
11666           //fNodes->Add(sub2node);
11667           sub1node->cd();
11668           //
11669           // Place copy #6 of ITS6 in I569
11670           //
11671           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,27.3703,"");
11672           sub2node->SetLineColor(kColorITS);
11673           sub2node->SetVisibility(1);
11674           //fNodes->Add(sub2node);
11675           sub1node->cd();
11676           //
11677           // Place copy #7 of ITS6 in I569
11678           //
11679           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,23.4603,"rot532");
11680           sub2node->SetLineColor(kColorITS);
11681           sub2node->SetVisibility(1);   
11682           //fNodes->Add(sub2node);
11683           sub1node->cd();
11684           //
11685           // Place copy #8 of ITS6 in I569
11686           //
11687           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,19.5503,"");
11688           sub2node->SetLineColor(kColorITS);
11689           sub2node->SetVisibility(1);
11690           //fNodes->Add(sub2node);
11691           sub1node->cd();
11692           //
11693           // Place copy #9 of ITS6 in I569
11694           //
11695           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,15.6403,"rot532");
11696           sub2node->SetLineColor(kColorITS);
11697           sub2node->SetVisibility(1);  
11698           //fNodes->Add(sub2node);
11699           sub1node->cd();
11700           //
11701           // Place copy #10 of ITS6 in I569
11702           //
11703           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,11.7303,"");
11704           sub2node->SetLineColor(kColorITS);
11705           sub2node->SetVisibility(1);
11706           //fNodes->Add(sub2node);
11707           sub1node->cd();
11708           //
11709           // Place copy #11 of ITS6 in I569
11710           //
11711           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,7.8203,"rot532");
11712           sub2node->SetLineColor(kColorITS);
11713           sub2node->SetVisibility(1);
11714           //fNodes->Add(sub2node);
11715           sub1node->cd();
11716           //
11717           // Place copy #12 of ITS6 in I569
11718           //
11719           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,3.9103,"");
11720           sub2node->SetLineColor(kColorITS);
11721           sub2node->SetVisibility(1);
11722           //fNodes->Add(sub2node);
11723           sub1node->cd();
11724           //
11725           // Place copy #13 of ITS6 in I569
11726           //
11727           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,0.0003,"");
11728           sub2node->SetLineColor(kColorITS);
11729           sub2node->SetVisibility(1);  
11730           //fNodes->Add(sub2node);
11731           sub1node->cd();
11732           //
11733           // Place copy #14 of ITS6 in I569
11734           //
11735           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-3.9097,"");
11736           sub2node->SetLineColor(kColorITS);
11737           sub2node->SetVisibility(1);
11738           //fNodes->Add(sub2node);
11739           sub1node->cd();
11740           //
11741           // Place copy #15 of ITS6 in I569
11742           //
11743           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-7.8197,"rot532");
11744           sub2node->SetLineColor(kColorITS);
11745           sub2node->SetVisibility(1);
11746           //fNodes->Add(sub2node);
11747           sub1node->cd();
11748           //
11749           // Place copy #16 of ITS6 in I569
11750           //
11751           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-11.7297,"");
11752           sub2node->SetLineColor(kColorITS);
11753           sub2node->SetVisibility(1);
11754           //fNodes->Add(sub2node);
11755           sub1node->cd();
11756           //
11757           // Place copy #17 of ITS6 in I569
11758           //
11759           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-15.6397,"");
11760           sub2node->SetLineColor(kColorITS);
11761           sub2node->SetVisibility(1);
11762           //fNodes->Add(sub2node);
11763           sub1node->cd();
11764           //
11765           // Place copy #18 of ITS6 in I569
11766           //
11767           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-19.5497,"");
11768           sub2node->SetLineColor(kColorITS);
11769           sub2node->SetVisibility(1);
11770           //fNodes->Add(sub2node);
11771           sub1node->cd();
11772           //
11773           // Place copy #19 of ITS6 in I569
11774           //
11775           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-23.4597,"rot532");
11776           sub2node->SetLineColor(kColorITS);
11777           sub2node->SetVisibility(1);   
11778           //fNodes->Add(sub2node);
11779           sub1node->cd();
11780           //
11781           // Place copy #20 of ITS6 in I569
11782           //
11783           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-27.3697,"");
11784           sub2node->SetLineColor(kColorITS);
11785           sub2node->SetVisibility(1);
11786           //fNodes->Add(sub2node);
11787           sub1node->cd();
11788           //
11789           // Place copy #21 of ITS6 in I569
11790           //
11791           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-31.2797,"rot532");
11792           sub2node->SetLineColor(kColorITS);
11793           sub2node->SetVisibility(1);
11794           //fNodes->Add(sub2node);
11795           sub1node->cd();
11796           //
11797           // Place copy #22 of ITS6 in I569
11798           //
11799           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-35.1897,"");
11800           sub2node->SetLineColor(kColorITS);
11801           sub2node->SetVisibility(1);
11802           //fNodes->Add(sub2node);
11803           sub1node->cd();
11804           //
11805           // Place copy #23 of ITS6 in I569
11806           //
11807           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-39.0997,"");
11808           sub2node->SetLineColor(kColorITS);
11809           sub2node->SetVisibility(1);
11810           //fNodes->Add(sub2node);
11811           sub1node->cd();
11812           //
11813           // Place copy #24 of ITS6 in I569
11814           //
11815           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-43.0097,"");
11816           sub2node->SetLineColor(kColorITS);
11817           sub2node->SetVisibility(1); 
11818           //fNodes->Add(sub2node);
11819           sub1node->cd();
11820           //
11821           // Place copy #25 of ITS6 in I569
11822           //
11823           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-46.9197,"rot532");
11824           sub2node->SetLineColor(kColorITS);
11825           sub2node->SetVisibility(1);
11826           //fNodes->Add(sub2node);
11827           sub1node->cd();                                                                                                                                                                                         
11828        //fNodes->Add(sub1node);
11829        node->cd();
11830        //
11831        // Place copy #25 of I569 in IT56
11832        //
11833        sub1node = new TNode("I569","I569","I569",39.8773,-17.4918,0.,"rot540");
11834        sub1node->SetLineColor(kColorITS);
11835        sub1node->SetVisibility(0);
11836        sub1node->cd();
11837           //
11838           // Place copy #1 of ITS6 in I569
11839           //
11840           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,46.9203,"rot532");
11841           sub2node->SetLineColor(kColorITS);
11842           sub2node->SetVisibility(1);
11843           //fNodes->Add(sub2node);
11844           sub1node->cd();
11845           //
11846           // Place copy #2 of ITS6 in I569
11847           //
11848           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,43.0103,"");
11849           sub2node->SetLineColor(kColorITS);
11850           sub2node->SetVisibility(1);
11851           //fNodes->Add(sub2node);
11852           sub1node->cd();
11853           //
11854           // Place copy #3 of ITS6 in I569
11855           //
11856           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,39.1003,"rot532");
11857           sub2node->SetLineColor(kColorITS);
11858           sub2node->SetVisibility(1);
11859           //fNodes->Add(sub2node);
11860           sub1node->cd();
11861           //
11862           // Place copy #4 of ITS6 in I569
11863           //
11864           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,35.1903,"");
11865           sub2node->SetLineColor(kColorITS);
11866           sub2node->SetVisibility(1);  
11867           //fNodes->Add(sub2node);
11868           sub1node->cd();
11869           //
11870           // Place copy #5 of ITS6 in I569
11871           //
11872           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,31.2803,"rot532");
11873           sub2node->SetLineColor(kColorITS);
11874           sub2node->SetVisibility(1);
11875           //fNodes->Add(sub2node);
11876           sub1node->cd();
11877           //
11878           // Place copy #6 of ITS6 in I569
11879           //
11880           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,27.3703,"");
11881           sub2node->SetLineColor(kColorITS);
11882           sub2node->SetVisibility(1);
11883           //fNodes->Add(sub2node);
11884           sub1node->cd();
11885           //
11886           // Place copy #7 of ITS6 in I569
11887           //
11888           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,23.4603,"rot532");
11889           sub2node->SetLineColor(kColorITS);
11890           sub2node->SetVisibility(1);   
11891           //fNodes->Add(sub2node);
11892           sub1node->cd();
11893           //
11894           // Place copy #8 of ITS6 in I569
11895           //
11896           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,19.5503,"");
11897           sub2node->SetLineColor(kColorITS);
11898           sub2node->SetVisibility(1);
11899           //fNodes->Add(sub2node);
11900           sub1node->cd();
11901           //
11902           // Place copy #9 of ITS6 in I569
11903           //
11904           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,15.6403,"rot532");
11905           sub2node->SetLineColor(kColorITS);
11906           sub2node->SetVisibility(1);  
11907           //fNodes->Add(sub2node);
11908           sub1node->cd();
11909           //
11910           // Place copy #10 of ITS6 in I569
11911           //
11912           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,11.7303,"");
11913           sub2node->SetLineColor(kColorITS);
11914           sub2node->SetVisibility(1);
11915           //fNodes->Add(sub2node);
11916           sub1node->cd();
11917           //
11918           // Place copy #11 of ITS6 in I569
11919           //
11920           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,7.8203,"rot532");
11921           sub2node->SetLineColor(kColorITS);
11922           sub2node->SetVisibility(1);
11923           //fNodes->Add(sub2node);
11924           sub1node->cd();
11925           //
11926           // Place copy #12 of ITS6 in I569
11927           //
11928           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,3.9103,"");
11929           sub2node->SetLineColor(kColorITS);
11930           sub2node->SetVisibility(1);
11931           //fNodes->Add(sub2node);
11932           sub1node->cd();
11933           //
11934           // Place copy #13 of ITS6 in I569
11935           //
11936           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,0.0003,"");
11937           sub2node->SetLineColor(kColorITS);
11938           sub2node->SetVisibility(1);  
11939           //fNodes->Add(sub2node);
11940           sub1node->cd();
11941           //
11942           // Place copy #14 of ITS6 in I569
11943           //
11944           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-3.9097,"");
11945           sub2node->SetLineColor(kColorITS);
11946           sub2node->SetVisibility(1);
11947           //fNodes->Add(sub2node);
11948           sub1node->cd();
11949           //
11950           // Place copy #15 of ITS6 in I569
11951           //
11952           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-7.8197,"rot532");
11953           sub2node->SetLineColor(kColorITS);
11954           sub2node->SetVisibility(1);
11955           //fNodes->Add(sub2node);
11956           sub1node->cd();
11957           //
11958           // Place copy #16 of ITS6 in I569
11959           //
11960           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-11.7297,"");
11961           sub2node->SetLineColor(kColorITS);
11962           sub2node->SetVisibility(1);
11963           //fNodes->Add(sub2node);
11964           sub1node->cd();
11965           //
11966           // Place copy #17 of ITS6 in I569
11967           //
11968           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-15.6397,"");
11969           sub2node->SetLineColor(kColorITS);
11970           sub2node->SetVisibility(1);
11971           //fNodes->Add(sub2node);
11972           sub1node->cd();
11973           //
11974           // Place copy #18 of ITS6 in I569
11975           //
11976           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-19.5497,"");
11977           sub2node->SetLineColor(kColorITS);
11978           sub2node->SetVisibility(1);
11979           //fNodes->Add(sub2node);
11980           sub1node->cd();
11981           //
11982           // Place copy #19 of ITS6 in I569
11983           //
11984           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-23.4597,"rot532");
11985           sub2node->SetLineColor(kColorITS);
11986           sub2node->SetVisibility(1);   
11987           //fNodes->Add(sub2node);
11988           sub1node->cd();
11989           //
11990           // Place copy #20 of ITS6 in I569
11991           //
11992           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-27.3697,"");
11993           sub2node->SetLineColor(kColorITS);
11994           sub2node->SetVisibility(1);
11995           //fNodes->Add(sub2node);
11996           sub1node->cd();
11997           //
11998           // Place copy #21 of ITS6 in I569
11999           //
12000           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-31.2797,"rot532");
12001           sub2node->SetLineColor(kColorITS);
12002           sub2node->SetVisibility(1);
12003           //fNodes->Add(sub2node);
12004           sub1node->cd();
12005           //
12006           // Place copy #22 of ITS6 in I569
12007           //
12008           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-35.1897,"");
12009           sub2node->SetLineColor(kColorITS);
12010           sub2node->SetVisibility(1);
12011           //fNodes->Add(sub2node);
12012           sub1node->cd();
12013           //
12014           // Place copy #23 of ITS6 in I569
12015           //
12016           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-39.0997,"");
12017           sub2node->SetLineColor(kColorITS);
12018           sub2node->SetVisibility(1);
12019           //fNodes->Add(sub2node);
12020           sub1node->cd();
12021           //
12022           // Place copy #24 of ITS6 in I569
12023           //
12024           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-43.0097,"");
12025           sub2node->SetLineColor(kColorITS);
12026           sub2node->SetVisibility(1); 
12027           //fNodes->Add(sub2node);
12028           sub1node->cd();
12029           //
12030           // Place copy #25 of ITS6 in I569
12031           //
12032           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-46.9197,"rot532");
12033           sub2node->SetLineColor(kColorITS);
12034           sub2node->SetVisibility(1);
12035           //fNodes->Add(sub2node);
12036           sub1node->cd();                                                                                                                                                                                         
12037        //fNodes->Add(sub1node);
12038        node->cd();
12039        //
12040        // Place copy #26 of I569 in IT56
12041        //
12042        sub1node = new TNode("I569","I569","I569",42.3606,-10.7272,0.,"rot541");
12043        sub1node->SetLineColor(kColorITS);
12044        sub1node->SetVisibility(0);
12045        sub1node->cd();
12046           //
12047           // Place copy #1 of ITS6 in I569
12048           //
12049           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,46.9203,"rot532");
12050           sub2node->SetLineColor(kColorITS);
12051           sub2node->SetVisibility(1);
12052           //fNodes->Add(sub2node);
12053           sub1node->cd();
12054           //
12055           // Place copy #2 of ITS6 in I569
12056           //
12057           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,43.0103,"");
12058           sub2node->SetLineColor(kColorITS);
12059           sub2node->SetVisibility(1);
12060           //fNodes->Add(sub2node);
12061           sub1node->cd();
12062           //
12063           // Place copy #3 of ITS6 in I569
12064           //
12065           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,39.1003,"rot532");
12066           sub2node->SetLineColor(kColorITS);
12067           sub2node->SetVisibility(1);
12068           //fNodes->Add(sub2node);
12069           sub1node->cd();
12070           //
12071           // Place copy #4 of ITS6 in I569
12072           //
12073           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,35.1903,"");
12074           sub2node->SetLineColor(kColorITS);
12075           sub2node->SetVisibility(1);  
12076           //fNodes->Add(sub2node);
12077           sub1node->cd();
12078           //
12079           // Place copy #5 of ITS6 in I569
12080           //
12081           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,31.2803,"rot532");
12082           sub2node->SetLineColor(kColorITS);
12083           sub2node->SetVisibility(1);
12084           //fNodes->Add(sub2node);
12085           sub1node->cd();
12086           //
12087           // Place copy #6 of ITS6 in I569
12088           //
12089           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,27.3703,"");
12090           sub2node->SetLineColor(kColorITS);
12091           sub2node->SetVisibility(1);
12092           //fNodes->Add(sub2node);
12093           sub1node->cd();
12094           //
12095           // Place copy #7 of ITS6 in I569
12096           //
12097           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,23.4603,"rot532");
12098           sub2node->SetLineColor(kColorITS);
12099           sub2node->SetVisibility(1);   
12100           //fNodes->Add(sub2node);
12101           sub1node->cd();
12102           //
12103           // Place copy #8 of ITS6 in I569
12104           //
12105           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,19.5503,"");
12106           sub2node->SetLineColor(kColorITS);
12107           sub2node->SetVisibility(1);
12108           //fNodes->Add(sub2node);
12109           sub1node->cd();
12110           //
12111           // Place copy #9 of ITS6 in I569
12112           //
12113           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,15.6403,"rot532");
12114           sub2node->SetLineColor(kColorITS);
12115           sub2node->SetVisibility(1);  
12116           //fNodes->Add(sub2node);
12117           sub1node->cd();
12118           //
12119           // Place copy #10 of ITS6 in I569
12120           //
12121           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,11.7303,"");
12122           sub2node->SetLineColor(kColorITS);
12123           sub2node->SetVisibility(1);
12124           //fNodes->Add(sub2node);
12125           sub1node->cd();
12126           //
12127           // Place copy #11 of ITS6 in I569
12128           //
12129           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,7.8203,"rot532");
12130           sub2node->SetLineColor(kColorITS);
12131           sub2node->SetVisibility(1);
12132           //fNodes->Add(sub2node);
12133           sub1node->cd();
12134           //
12135           // Place copy #12 of ITS6 in I569
12136           //
12137           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,3.9103,"");
12138           sub2node->SetLineColor(kColorITS);
12139           sub2node->SetVisibility(1);
12140           //fNodes->Add(sub2node);
12141           sub1node->cd();
12142           //
12143           // Place copy #13 of ITS6 in I569
12144           //
12145           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,0.0003,"");
12146           sub2node->SetLineColor(kColorITS);
12147           sub2node->SetVisibility(1);  
12148           //fNodes->Add(sub2node);
12149           sub1node->cd();
12150           //
12151           // Place copy #14 of ITS6 in I569
12152           //
12153           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-3.9097,"");
12154           sub2node->SetLineColor(kColorITS);
12155           sub2node->SetVisibility(1);
12156           //fNodes->Add(sub2node);
12157           sub1node->cd();
12158           //
12159           // Place copy #15 of ITS6 in I569
12160           //
12161           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-7.8197,"rot532");
12162           sub2node->SetLineColor(kColorITS);
12163           sub2node->SetVisibility(1);
12164           //fNodes->Add(sub2node);
12165           sub1node->cd();
12166           //
12167           // Place copy #16 of ITS6 in I569
12168           //
12169           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-11.7297,"");
12170           sub2node->SetLineColor(kColorITS);
12171           sub2node->SetVisibility(1);
12172           //fNodes->Add(sub2node);
12173           sub1node->cd();
12174           //
12175           // Place copy #17 of ITS6 in I569
12176           //
12177           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-15.6397,"");
12178           sub2node->SetLineColor(kColorITS);
12179           sub2node->SetVisibility(1);
12180           //fNodes->Add(sub2node);
12181           sub1node->cd();
12182           //
12183           // Place copy #18 of ITS6 in I569
12184           //
12185           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-19.5497,"");
12186           sub2node->SetLineColor(kColorITS);
12187           sub2node->SetVisibility(1);
12188           //fNodes->Add(sub2node);
12189           sub1node->cd();
12190           //
12191           // Place copy #19 of ITS6 in I569
12192           //
12193           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-23.4597,"rot532");
12194           sub2node->SetLineColor(kColorITS);
12195           sub2node->SetVisibility(1);   
12196           //fNodes->Add(sub2node);
12197           sub1node->cd();
12198           //
12199           // Place copy #20 of ITS6 in I569
12200           //
12201           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-27.3697,"");
12202           sub2node->SetLineColor(kColorITS);
12203           sub2node->SetVisibility(1);
12204           //fNodes->Add(sub2node);
12205           sub1node->cd();
12206           //
12207           // Place copy #21 of ITS6 in I569
12208           //
12209           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-31.2797,"rot532");
12210           sub2node->SetLineColor(kColorITS);
12211           sub2node->SetVisibility(1);
12212           //fNodes->Add(sub2node);
12213           sub1node->cd();
12214           //
12215           // Place copy #22 of ITS6 in I569
12216           //
12217           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-35.1897,"");
12218           sub2node->SetLineColor(kColorITS);
12219           sub2node->SetVisibility(1);
12220           //fNodes->Add(sub2node);
12221           sub1node->cd();
12222           //
12223           // Place copy #23 of ITS6 in I569
12224           //
12225           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-39.0997,"");
12226           sub2node->SetLineColor(kColorITS);
12227           sub2node->SetVisibility(1);
12228           //fNodes->Add(sub2node);
12229           sub1node->cd();
12230           //
12231           // Place copy #24 of ITS6 in I569
12232           //
12233           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-43.0097,"");
12234           sub2node->SetLineColor(kColorITS);
12235           sub2node->SetVisibility(1); 
12236           //fNodes->Add(sub2node);
12237           sub1node->cd();
12238           //
12239           // Place copy #25 of ITS6 in I569
12240           //
12241           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-46.9197,"rot532");
12242           sub2node->SetLineColor(kColorITS);
12243           sub2node->SetVisibility(1);
12244           //fNodes->Add(sub2node);
12245           sub1node->cd();                                                                                                                                                                                         
12246        //fNodes->Add(sub1node);
12247        node->cd();
12248        //
12249        // Place copy #27 of I569 in IT56
12250        //
12251        sub1node = new TNode("I569","I569","I569",43.3963,-3.5959,0.,"rot542");
12252        sub1node->SetLineColor(kColorITS);
12253        sub1node->SetVisibility(0);
12254        sub1node->cd();
12255           //
12256           // Place copy #1 of ITS6 in I569
12257           //
12258           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,46.9203,"rot532");
12259           sub2node->SetLineColor(kColorITS);
12260           sub2node->SetVisibility(1);
12261           //fNodes->Add(sub2node);
12262           sub1node->cd();
12263           //
12264           // Place copy #2 of ITS6 in I569
12265           //
12266           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,43.0103,"");
12267           sub2node->SetLineColor(kColorITS);
12268           sub2node->SetVisibility(1);
12269           //fNodes->Add(sub2node);
12270           sub1node->cd();
12271           //
12272           // Place copy #3 of ITS6 in I569
12273           //
12274           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,39.1003,"rot532");
12275           sub2node->SetLineColor(kColorITS);
12276           sub2node->SetVisibility(1);
12277           //fNodes->Add(sub2node);
12278           sub1node->cd();
12279           //
12280           // Place copy #4 of ITS6 in I569
12281           //
12282           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,35.1903,"");
12283           sub2node->SetLineColor(kColorITS);
12284           sub2node->SetVisibility(1);  
12285           //fNodes->Add(sub2node);
12286           sub1node->cd();
12287           //
12288           // Place copy #5 of ITS6 in I569
12289           //
12290           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,31.2803,"rot532");
12291           sub2node->SetLineColor(kColorITS);
12292           sub2node->SetVisibility(1);
12293           //fNodes->Add(sub2node);
12294           sub1node->cd();
12295           //
12296           // Place copy #6 of ITS6 in I569
12297           //
12298           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,27.3703,"");
12299           sub2node->SetLineColor(kColorITS);
12300           sub2node->SetVisibility(1);
12301           //fNodes->Add(sub2node);
12302           sub1node->cd();
12303           //
12304           // Place copy #7 of ITS6 in I569
12305           //
12306           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,23.4603,"rot532");
12307           sub2node->SetLineColor(kColorITS);
12308           sub2node->SetVisibility(1);   
12309           //fNodes->Add(sub2node);
12310           sub1node->cd();
12311           //
12312           // Place copy #8 of ITS6 in I569
12313           //
12314           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,19.5503,"");
12315           sub2node->SetLineColor(kColorITS);
12316           sub2node->SetVisibility(1);
12317           //fNodes->Add(sub2node);
12318           sub1node->cd();
12319           //
12320           // Place copy #9 of ITS6 in I569
12321           //
12322           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,15.6403,"rot532");
12323           sub2node->SetLineColor(kColorITS);
12324           sub2node->SetVisibility(1);  
12325           //fNodes->Add(sub2node);
12326           sub1node->cd();
12327           //
12328           // Place copy #10 of ITS6 in I569
12329           //
12330           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,11.7303,"");
12331           sub2node->SetLineColor(kColorITS);
12332           sub2node->SetVisibility(1);
12333           //fNodes->Add(sub2node);
12334           sub1node->cd();
12335           //
12336           // Place copy #11 of ITS6 in I569
12337           //
12338           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,7.8203,"rot532");
12339           sub2node->SetLineColor(kColorITS);
12340           sub2node->SetVisibility(1);
12341           //fNodes->Add(sub2node);
12342           sub1node->cd();
12343           //
12344           // Place copy #12 of ITS6 in I569
12345           //
12346           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,3.9103,"");
12347           sub2node->SetLineColor(kColorITS);
12348           sub2node->SetVisibility(1);
12349           //fNodes->Add(sub2node);
12350           sub1node->cd();
12351           //
12352           // Place copy #13 of ITS6 in I569
12353           //
12354           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,0.0003,"");
12355           sub2node->SetLineColor(kColorITS);
12356           sub2node->SetVisibility(1);  
12357           //fNodes->Add(sub2node);
12358           sub1node->cd();
12359           //
12360           // Place copy #14 of ITS6 in I569
12361           //
12362           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-3.9097,"");
12363           sub2node->SetLineColor(kColorITS);
12364           sub2node->SetVisibility(1);
12365           //fNodes->Add(sub2node);
12366           sub1node->cd();
12367           //
12368           // Place copy #15 of ITS6 in I569
12369           //
12370           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-7.8197,"rot532");
12371           sub2node->SetLineColor(kColorITS);
12372           sub2node->SetVisibility(1);
12373           //fNodes->Add(sub2node);
12374           sub1node->cd();
12375           //
12376           // Place copy #16 of ITS6 in I569
12377           //
12378           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-11.7297,"");
12379           sub2node->SetLineColor(kColorITS);
12380           sub2node->SetVisibility(1);
12381           //fNodes->Add(sub2node);
12382           sub1node->cd();
12383           //
12384           // Place copy #17 of ITS6 in I569
12385           //
12386           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-15.6397,"");
12387           sub2node->SetLineColor(kColorITS);
12388           sub2node->SetVisibility(1);
12389           //fNodes->Add(sub2node);
12390           sub1node->cd();
12391           //
12392           // Place copy #18 of ITS6 in I569
12393           //
12394           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-19.5497,"");
12395           sub2node->SetLineColor(kColorITS);
12396           sub2node->SetVisibility(1);
12397           //fNodes->Add(sub2node);
12398           sub1node->cd();
12399           //
12400           // Place copy #19 of ITS6 in I569
12401           //
12402           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-23.4597,"rot532");
12403           sub2node->SetLineColor(kColorITS);
12404           sub2node->SetVisibility(1);   
12405           //fNodes->Add(sub2node);
12406           sub1node->cd();
12407           //
12408           // Place copy #20 of ITS6 in I569
12409           //
12410           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-27.3697,"");
12411           sub2node->SetLineColor(kColorITS);
12412           sub2node->SetVisibility(1);
12413           //fNodes->Add(sub2node);
12414           sub1node->cd();
12415           //
12416           // Place copy #21 of ITS6 in I569
12417           //
12418           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-31.2797,"rot532");
12419           sub2node->SetLineColor(kColorITS);
12420           sub2node->SetVisibility(1);
12421           //fNodes->Add(sub2node);
12422           sub1node->cd();
12423           //
12424           // Place copy #22 of ITS6 in I569
12425           //
12426           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-35.1897,"");
12427           sub2node->SetLineColor(kColorITS);
12428           sub2node->SetVisibility(1);
12429           //fNodes->Add(sub2node);
12430           sub1node->cd();
12431           //
12432           // Place copy #23 of ITS6 in I569
12433           //
12434           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-39.0997,"");
12435           sub2node->SetLineColor(kColorITS);
12436           sub2node->SetVisibility(1);
12437           //fNodes->Add(sub2node);
12438           sub1node->cd();
12439           //
12440           // Place copy #24 of ITS6 in I569
12441           //
12442           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-43.0097,"");
12443           sub2node->SetLineColor(kColorITS);
12444           sub2node->SetVisibility(1); 
12445           //fNodes->Add(sub2node);
12446           sub1node->cd();
12447           //
12448           // Place copy #25 of ITS6 in I569
12449           //
12450           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-46.9197,"rot532");
12451           sub2node->SetLineColor(kColorITS);
12452           sub2node->SetVisibility(1);
12453           //fNodes->Add(sub2node);
12454           sub1node->cd();                                                                                                                                                                                         
12455        //fNodes->Add(sub1node);
12456        node->cd();
12457        //
12458        // Place copy #28 of I569 in IT56
12459        //
12460        sub1node = new TNode("I569","I569","I569",43.5484,3.6085,0.,"rot543");
12461        sub1node->SetLineColor(kColorITS);
12462        sub1node->SetVisibility(0);
12463        sub1node->cd();
12464           //
12465           // Place copy #1 of ITS6 in I569
12466           //
12467           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,46.9203,"rot532");
12468           sub2node->SetLineColor(kColorITS);
12469           sub2node->SetVisibility(1);
12470           //fNodes->Add(sub2node);
12471           sub1node->cd();
12472           //
12473           // Place copy #2 of ITS6 in I569
12474           //
12475           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,43.0103,"");
12476           sub2node->SetLineColor(kColorITS);
12477           sub2node->SetVisibility(1);
12478           //fNodes->Add(sub2node);
12479           sub1node->cd();
12480           //
12481           // Place copy #3 of ITS6 in I569
12482           //
12483           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,39.1003,"rot532");
12484           sub2node->SetLineColor(kColorITS);
12485           sub2node->SetVisibility(1);
12486           //fNodes->Add(sub2node);
12487           sub1node->cd();
12488           //
12489           // Place copy #4 of ITS6 in I569
12490           //
12491           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,35.1903,"");
12492           sub2node->SetLineColor(kColorITS);
12493           sub2node->SetVisibility(1);  
12494           //fNodes->Add(sub2node);
12495           sub1node->cd();
12496           //
12497           // Place copy #5 of ITS6 in I569
12498           //
12499           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,31.2803,"rot532");
12500           sub2node->SetLineColor(kColorITS);
12501           sub2node->SetVisibility(1);
12502           //fNodes->Add(sub2node);
12503           sub1node->cd();
12504           //
12505           // Place copy #6 of ITS6 in I569
12506           //
12507           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,27.3703,"");
12508           sub2node->SetLineColor(kColorITS);
12509           sub2node->SetVisibility(1);
12510           //fNodes->Add(sub2node);
12511           sub1node->cd();
12512           //
12513           // Place copy #7 of ITS6 in I569
12514           //
12515           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,23.4603,"rot532");
12516           sub2node->SetLineColor(kColorITS);
12517           sub2node->SetVisibility(1);   
12518           //fNodes->Add(sub2node);
12519           sub1node->cd();
12520           //
12521           // Place copy #8 of ITS6 in I569
12522           //
12523           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,19.5503,"");
12524           sub2node->SetLineColor(kColorITS);
12525           sub2node->SetVisibility(1);
12526           //fNodes->Add(sub2node);
12527           sub1node->cd();
12528           //
12529           // Place copy #9 of ITS6 in I569
12530           //
12531           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,15.6403,"rot532");
12532           sub2node->SetLineColor(kColorITS);
12533           sub2node->SetVisibility(1);  
12534           //fNodes->Add(sub2node);
12535           sub1node->cd();
12536           //
12537           // Place copy #10 of ITS6 in I569
12538           //
12539           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,11.7303,"");
12540           sub2node->SetLineColor(kColorITS);
12541           sub2node->SetVisibility(1);
12542           //fNodes->Add(sub2node);
12543           sub1node->cd();
12544           //
12545           // Place copy #11 of ITS6 in I569
12546           //
12547           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,7.8203,"rot532");
12548           sub2node->SetLineColor(kColorITS);
12549           sub2node->SetVisibility(1);
12550           //fNodes->Add(sub2node);
12551           sub1node->cd();
12552           //
12553           // Place copy #12 of ITS6 in I569
12554           //
12555           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,3.9103,"");
12556           sub2node->SetLineColor(kColorITS);
12557           sub2node->SetVisibility(1);
12558           //fNodes->Add(sub2node);
12559           sub1node->cd();
12560           //
12561           // Place copy #13 of ITS6 in I569
12562           //
12563           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,0.0003,"");
12564           sub2node->SetLineColor(kColorITS);
12565           sub2node->SetVisibility(1);  
12566           //fNodes->Add(sub2node);
12567           sub1node->cd();
12568           //
12569           // Place copy #14 of ITS6 in I569
12570           //
12571           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-3.9097,"");
12572           sub2node->SetLineColor(kColorITS);
12573           sub2node->SetVisibility(1);
12574           //fNodes->Add(sub2node);
12575           sub1node->cd();
12576           //
12577           // Place copy #15 of ITS6 in I569
12578           //
12579           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-7.8197,"rot532");
12580           sub2node->SetLineColor(kColorITS);
12581           sub2node->SetVisibility(1);
12582           //fNodes->Add(sub2node);
12583           sub1node->cd();
12584           //
12585           // Place copy #16 of ITS6 in I569
12586           //
12587           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-11.7297,"");
12588           sub2node->SetLineColor(kColorITS);
12589           sub2node->SetVisibility(1);
12590           //fNodes->Add(sub2node);
12591           sub1node->cd();
12592           //
12593           // Place copy #17 of ITS6 in I569
12594           //
12595           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-15.6397,"");
12596           sub2node->SetLineColor(kColorITS);
12597           sub2node->SetVisibility(1);
12598           //fNodes->Add(sub2node);
12599           sub1node->cd();
12600           //
12601           // Place copy #18 of ITS6 in I569
12602           //
12603           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-19.5497,"");
12604           sub2node->SetLineColor(kColorITS);
12605           sub2node->SetVisibility(1);
12606           //fNodes->Add(sub2node);
12607           sub1node->cd();
12608           //
12609           // Place copy #19 of ITS6 in I569
12610           //
12611           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-23.4597,"rot532");
12612           sub2node->SetLineColor(kColorITS);
12613           sub2node->SetVisibility(1);   
12614           //fNodes->Add(sub2node);
12615           sub1node->cd();
12616           //
12617           // Place copy #20 of ITS6 in I569
12618           //
12619           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-27.3697,"");
12620           sub2node->SetLineColor(kColorITS);
12621           sub2node->SetVisibility(1);
12622           //fNodes->Add(sub2node);
12623           sub1node->cd();
12624           //
12625           // Place copy #21 of ITS6 in I569
12626           //
12627           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-31.2797,"rot532");
12628           sub2node->SetLineColor(kColorITS);
12629           sub2node->SetVisibility(1);
12630           //fNodes->Add(sub2node);
12631           sub1node->cd();
12632           //
12633           // Place copy #22 of ITS6 in I569
12634           //
12635           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-35.1897,"");
12636           sub2node->SetLineColor(kColorITS);
12637           sub2node->SetVisibility(1);
12638           //fNodes->Add(sub2node);
12639           sub1node->cd();
12640           //
12641           // Place copy #23 of ITS6 in I569
12642           //
12643           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-39.0997,"");
12644           sub2node->SetLineColor(kColorITS);
12645           sub2node->SetVisibility(1);
12646           //fNodes->Add(sub2node);
12647           sub1node->cd();
12648           //
12649           // Place copy #24 of ITS6 in I569
12650           //
12651           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-43.0097,"");
12652           sub2node->SetLineColor(kColorITS);
12653           sub2node->SetVisibility(1); 
12654           //fNodes->Add(sub2node);
12655           sub1node->cd();
12656           //
12657           // Place copy #25 of ITS6 in I569
12658           //
12659           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-46.9197,"rot532");
12660           sub2node->SetLineColor(kColorITS);
12661           sub2node->SetVisibility(1);
12662           //fNodes->Add(sub2node);
12663           sub1node->cd();                                                                                                                                                                                         
12664        //fNodes->Add(sub1node);
12665        node->cd();
12666        //
12667        // Place copy #29 of I569 in IT56
12668        //
12669        sub1node = new TNode("I569","I569","I569",42.2125,10.6897,0.,"rot544");
12670        sub1node->SetLineColor(kColorITS);
12671        sub1node->SetVisibility(0);
12672        sub1node->cd();
12673           //
12674           // Place copy #1 of ITS6 in I569
12675           //
12676           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,46.9203,"rot532");
12677           sub2node->SetLineColor(kColorITS);
12678           sub2node->SetVisibility(1);
12679           //fNodes->Add(sub2node);
12680           sub1node->cd();
12681           //
12682           // Place copy #2 of ITS6 in I569
12683           //
12684           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,43.0103,"");
12685           sub2node->SetLineColor(kColorITS);
12686           sub2node->SetVisibility(1);
12687           //fNodes->Add(sub2node);
12688           sub1node->cd();
12689           //
12690           // Place copy #3 of ITS6 in I569
12691           //
12692           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,39.1003,"rot532");
12693           sub2node->SetLineColor(kColorITS);
12694           sub2node->SetVisibility(1);
12695           //fNodes->Add(sub2node);
12696           sub1node->cd();
12697           //
12698           // Place copy #4 of ITS6 in I569
12699           //
12700           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,35.1903,"");
12701           sub2node->SetLineColor(kColorITS);
12702           sub2node->SetVisibility(1);  
12703           //fNodes->Add(sub2node);
12704           sub1node->cd();
12705           //
12706           // Place copy #5 of ITS6 in I569
12707           //
12708           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,31.2803,"rot532");
12709           sub2node->SetLineColor(kColorITS);
12710           sub2node->SetVisibility(1);
12711           //fNodes->Add(sub2node);
12712           sub1node->cd();
12713           //
12714           // Place copy #6 of ITS6 in I569
12715           //
12716           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,27.3703,"");
12717           sub2node->SetLineColor(kColorITS);
12718           sub2node->SetVisibility(1);
12719           //fNodes->Add(sub2node);
12720           sub1node->cd();
12721           //
12722           // Place copy #7 of ITS6 in I569
12723           //
12724           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,23.4603,"rot532");
12725           sub2node->SetLineColor(kColorITS);
12726           sub2node->SetVisibility(1);   
12727           //fNodes->Add(sub2node);
12728           sub1node->cd();
12729           //
12730           // Place copy #8 of ITS6 in I569
12731           //
12732           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,19.5503,"");
12733           sub2node->SetLineColor(kColorITS);
12734           sub2node->SetVisibility(1);
12735           //fNodes->Add(sub2node);
12736           sub1node->cd();
12737           //
12738           // Place copy #9 of ITS6 in I569
12739           //
12740           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,15.6403,"rot532");
12741           sub2node->SetLineColor(kColorITS);
12742           sub2node->SetVisibility(1);  
12743           //fNodes->Add(sub2node);
12744           sub1node->cd();
12745           //
12746           // Place copy #10 of ITS6 in I569
12747           //
12748           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,11.7303,"");
12749           sub2node->SetLineColor(kColorITS);
12750           sub2node->SetVisibility(1);
12751           //fNodes->Add(sub2node);
12752           sub1node->cd();
12753           //
12754           // Place copy #11 of ITS6 in I569
12755           //
12756           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,7.8203,"rot532");
12757           sub2node->SetLineColor(kColorITS);
12758           sub2node->SetVisibility(1);
12759           //fNodes->Add(sub2node);
12760           sub1node->cd();
12761           //
12762           // Place copy #12 of ITS6 in I569
12763           //
12764           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,3.9103,"");
12765           sub2node->SetLineColor(kColorITS);
12766           sub2node->SetVisibility(1);
12767           //fNodes->Add(sub2node);
12768           sub1node->cd();
12769           //
12770           // Place copy #13 of ITS6 in I569
12771           //
12772           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,0.0003,"");
12773           sub2node->SetLineColor(kColorITS);
12774           sub2node->SetVisibility(1);  
12775           //fNodes->Add(sub2node);
12776           sub1node->cd();
12777           //
12778           // Place copy #14 of ITS6 in I569
12779           //
12780           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-3.9097,"");
12781           sub2node->SetLineColor(kColorITS);
12782           sub2node->SetVisibility(1);
12783           //fNodes->Add(sub2node);
12784           sub1node->cd();
12785           //
12786           // Place copy #15 of ITS6 in I569
12787           //
12788           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-7.8197,"rot532");
12789           sub2node->SetLineColor(kColorITS);
12790           sub2node->SetVisibility(1);
12791           //fNodes->Add(sub2node);
12792           sub1node->cd();
12793           //
12794           // Place copy #16 of ITS6 in I569
12795           //
12796           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-11.7297,"");
12797           sub2node->SetLineColor(kColorITS);
12798           sub2node->SetVisibility(1);
12799           //fNodes->Add(sub2node);
12800           sub1node->cd();
12801           //
12802           // Place copy #17 of ITS6 in I569
12803           //
12804           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-15.6397,"");
12805           sub2node->SetLineColor(kColorITS);
12806           sub2node->SetVisibility(1);
12807           //fNodes->Add(sub2node);
12808           sub1node->cd();
12809           //
12810           // Place copy #18 of ITS6 in I569
12811           //
12812           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-19.5497,"");
12813           sub2node->SetLineColor(kColorITS);
12814           sub2node->SetVisibility(1);
12815           //fNodes->Add(sub2node);
12816           sub1node->cd();
12817           //
12818           // Place copy #19 of ITS6 in I569
12819           //
12820           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-23.4597,"rot532");
12821           sub2node->SetLineColor(kColorITS);
12822           sub2node->SetVisibility(1);   
12823           //fNodes->Add(sub2node);
12824           sub1node->cd();
12825           //
12826           // Place copy #20 of ITS6 in I569
12827           //
12828           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-27.3697,"");
12829           sub2node->SetLineColor(kColorITS);
12830           sub2node->SetVisibility(1);
12831           //fNodes->Add(sub2node);
12832           sub1node->cd();
12833           //
12834           // Place copy #21 of ITS6 in I569
12835           //
12836           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-31.2797,"rot532");
12837           sub2node->SetLineColor(kColorITS);
12838           sub2node->SetVisibility(1);
12839           //fNodes->Add(sub2node);
12840           sub1node->cd();
12841           //
12842           // Place copy #22 of ITS6 in I569
12843           //
12844           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-35.1897,"");
12845           sub2node->SetLineColor(kColorITS);
12846           sub2node->SetVisibility(1);
12847           //fNodes->Add(sub2node);
12848           sub1node->cd();
12849           //
12850           // Place copy #23 of ITS6 in I569
12851           //
12852           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-39.0997,"");
12853           sub2node->SetLineColor(kColorITS);
12854           sub2node->SetVisibility(1);
12855           //fNodes->Add(sub2node);
12856           sub1node->cd();
12857           //
12858           // Place copy #24 of ITS6 in I569
12859           //
12860           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-43.0097,"");
12861           sub2node->SetLineColor(kColorITS);
12862           sub2node->SetVisibility(1); 
12863           //fNodes->Add(sub2node);
12864           sub1node->cd();
12865           //
12866           // Place copy #25 of ITS6 in I569
12867           //
12868           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-46.9197,"rot532");
12869           sub2node->SetLineColor(kColorITS);
12870           sub2node->SetVisibility(1);
12871           //fNodes->Add(sub2node);
12872           sub1node->cd();                                                                                                                                                                                         
12873        //fNodes->Add(sub1node);
12874        node->cd();
12875        //
12876        // Place copy #30 of I569 in IT56
12877        //
12878        sub1node = new TNode("I569","I569","I569",40.0172,17.5532,0.,"rot545");
12879        sub1node->SetLineColor(kColorITS);
12880        sub1node->SetVisibility(0);
12881        sub1node->cd();
12882           //
12883           // Place copy #1 of ITS6 in I569
12884           //
12885           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,46.9203,"rot532");
12886           sub2node->SetLineColor(kColorITS);
12887           sub2node->SetVisibility(1);
12888           //fNodes->Add(sub2node);
12889           sub1node->cd();
12890           //
12891           // Place copy #2 of ITS6 in I569
12892           //
12893           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,43.0103,"");
12894           sub2node->SetLineColor(kColorITS);
12895           sub2node->SetVisibility(1);
12896           //fNodes->Add(sub2node);
12897           sub1node->cd();
12898           //
12899           // Place copy #3 of ITS6 in I569
12900           //
12901           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,39.1003,"rot532");
12902           sub2node->SetLineColor(kColorITS);
12903           sub2node->SetVisibility(1);
12904           //fNodes->Add(sub2node);
12905           sub1node->cd();
12906           //
12907           // Place copy #4 of ITS6 in I569
12908           //
12909           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,35.1903,"");
12910           sub2node->SetLineColor(kColorITS);
12911           sub2node->SetVisibility(1);  
12912           //fNodes->Add(sub2node);
12913           sub1node->cd();
12914           //
12915           // Place copy #5 of ITS6 in I569
12916           //
12917           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,31.2803,"rot532");
12918           sub2node->SetLineColor(kColorITS);
12919           sub2node->SetVisibility(1);
12920           //fNodes->Add(sub2node);
12921           sub1node->cd();
12922           //
12923           // Place copy #6 of ITS6 in I569
12924           //
12925           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,27.3703,"");
12926           sub2node->SetLineColor(kColorITS);
12927           sub2node->SetVisibility(1);
12928           //fNodes->Add(sub2node);
12929           sub1node->cd();
12930           //
12931           // Place copy #7 of ITS6 in I569
12932           //
12933           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,23.4603,"rot532");
12934           sub2node->SetLineColor(kColorITS);
12935           sub2node->SetVisibility(1);   
12936           //fNodes->Add(sub2node);
12937           sub1node->cd();
12938           //
12939           // Place copy #8 of ITS6 in I569
12940           //
12941           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,19.5503,"");
12942           sub2node->SetLineColor(kColorITS);
12943           sub2node->SetVisibility(1);
12944           //fNodes->Add(sub2node);
12945           sub1node->cd();
12946           //
12947           // Place copy #9 of ITS6 in I569
12948           //
12949           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,15.6403,"rot532");
12950           sub2node->SetLineColor(kColorITS);
12951           sub2node->SetVisibility(1);  
12952           //fNodes->Add(sub2node);
12953           sub1node->cd();
12954           //
12955           // Place copy #10 of ITS6 in I569
12956           //
12957           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,11.7303,"");
12958           sub2node->SetLineColor(kColorITS);
12959           sub2node->SetVisibility(1);
12960           //fNodes->Add(sub2node);
12961           sub1node->cd();
12962           //
12963           // Place copy #11 of ITS6 in I569
12964           //
12965           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,7.8203,"rot532");
12966           sub2node->SetLineColor(kColorITS);
12967           sub2node->SetVisibility(1);
12968           //fNodes->Add(sub2node);
12969           sub1node->cd();
12970           //
12971           // Place copy #12 of ITS6 in I569
12972           //
12973           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,3.9103,"");
12974           sub2node->SetLineColor(kColorITS);
12975           sub2node->SetVisibility(1);
12976           //fNodes->Add(sub2node);
12977           sub1node->cd();
12978           //
12979           // Place copy #13 of ITS6 in I569
12980           //
12981           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,0.0003,"");
12982           sub2node->SetLineColor(kColorITS);
12983           sub2node->SetVisibility(1);  
12984           //fNodes->Add(sub2node);
12985           sub1node->cd();
12986           //
12987           // Place copy #14 of ITS6 in I569
12988           //
12989           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-3.9097,"");
12990           sub2node->SetLineColor(kColorITS);
12991           sub2node->SetVisibility(1);
12992           //fNodes->Add(sub2node);
12993           sub1node->cd();
12994           //
12995           // Place copy #15 of ITS6 in I569
12996           //
12997           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-7.8197,"rot532");
12998           sub2node->SetLineColor(kColorITS);
12999           sub2node->SetVisibility(1);
13000           //fNodes->Add(sub2node);
13001           sub1node->cd();
13002           //
13003           // Place copy #16 of ITS6 in I569
13004           //
13005           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-11.7297,"");
13006           sub2node->SetLineColor(kColorITS);
13007           sub2node->SetVisibility(1);
13008           //fNodes->Add(sub2node);
13009           sub1node->cd();
13010           //
13011           // Place copy #17 of ITS6 in I569
13012           //
13013           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-15.6397,"");
13014           sub2node->SetLineColor(kColorITS);
13015           sub2node->SetVisibility(1);
13016           //fNodes->Add(sub2node);
13017           sub1node->cd();
13018           //
13019           // Place copy #18 of ITS6 in I569
13020           //
13021           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-19.5497,"");
13022           sub2node->SetLineColor(kColorITS);
13023           sub2node->SetVisibility(1);
13024           //fNodes->Add(sub2node);
13025           sub1node->cd();
13026           //
13027           // Place copy #19 of ITS6 in I569
13028           //
13029           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-23.4597,"rot532");
13030           sub2node->SetLineColor(kColorITS);
13031           sub2node->SetVisibility(1);   
13032           //fNodes->Add(sub2node);
13033           sub1node->cd();
13034           //
13035           // Place copy #20 of ITS6 in I569
13036           //
13037           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-27.3697,"");
13038           sub2node->SetLineColor(kColorITS);
13039           sub2node->SetVisibility(1);
13040           //fNodes->Add(sub2node);
13041           sub1node->cd();
13042           //
13043           // Place copy #21 of ITS6 in I569
13044           //
13045           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-31.2797,"rot532");
13046           sub2node->SetLineColor(kColorITS);
13047           sub2node->SetVisibility(1);
13048           //fNodes->Add(sub2node);
13049           sub1node->cd();
13050           //
13051           // Place copy #22 of ITS6 in I569
13052           //
13053           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-35.1897,"");
13054           sub2node->SetLineColor(kColorITS);
13055           sub2node->SetVisibility(1);
13056           //fNodes->Add(sub2node);
13057           sub1node->cd();
13058           //
13059           // Place copy #23 of ITS6 in I569
13060           //
13061           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-39.0997,"");
13062           sub2node->SetLineColor(kColorITS);
13063           sub2node->SetVisibility(1);
13064           //fNodes->Add(sub2node);
13065           sub1node->cd();
13066           //
13067           // Place copy #24 of ITS6 in I569
13068           //
13069           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-43.0097,"");
13070           sub2node->SetLineColor(kColorITS);
13071           sub2node->SetVisibility(1); 
13072           //fNodes->Add(sub2node);
13073           sub1node->cd();
13074           //
13075           // Place copy #25 of ITS6 in I569
13076           //
13077           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-46.9197,"rot532");
13078           sub2node->SetLineColor(kColorITS);
13079           sub2node->SetVisibility(1);
13080           //fNodes->Add(sub2node);
13081           sub1node->cd();                                                                                                                                                                                         
13082        //fNodes->Add(sub1node);
13083        node->cd();
13084        //
13085        // Place copy #31 of I569 in IT56
13086        //
13087        sub1node = new TNode("I569","I569","I569",36.4544,23.8169,0.,"rot546");
13088        sub1node->SetLineColor(kColorITS);
13089        sub1node->SetVisibility(0);
13090        sub1node->cd();
13091           //
13092           // Place copy #1 of ITS6 in I569
13093           //
13094           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,46.9203,"rot532");
13095           sub2node->SetLineColor(kColorITS);
13096           sub2node->SetVisibility(1);
13097           //fNodes->Add(sub2node);
13098           sub1node->cd();
13099           //
13100           // Place copy #2 of ITS6 in I569
13101           //
13102           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,43.0103,"");
13103           sub2node->SetLineColor(kColorITS);
13104           sub2node->SetVisibility(1);
13105           //fNodes->Add(sub2node);
13106           sub1node->cd();
13107           //
13108           // Place copy #3 of ITS6 in I569
13109           //
13110           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,39.1003,"rot532");
13111           sub2node->SetLineColor(kColorITS);
13112           sub2node->SetVisibility(1);
13113           //fNodes->Add(sub2node);
13114           sub1node->cd();
13115           //
13116           // Place copy #4 of ITS6 in I569
13117           //
13118           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,35.1903,"");
13119           sub2node->SetLineColor(kColorITS);
13120           sub2node->SetVisibility(1);  
13121           //fNodes->Add(sub2node);
13122           sub1node->cd();
13123           //
13124           // Place copy #5 of ITS6 in I569
13125           //
13126           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,31.2803,"rot532");
13127           sub2node->SetLineColor(kColorITS);
13128           sub2node->SetVisibility(1);
13129           //fNodes->Add(sub2node);
13130           sub1node->cd();
13131           //
13132           // Place copy #6 of ITS6 in I569
13133           //
13134           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,27.3703,"");
13135           sub2node->SetLineColor(kColorITS);
13136           sub2node->SetVisibility(1);
13137           //fNodes->Add(sub2node);
13138           sub1node->cd();
13139           //
13140           // Place copy #7 of ITS6 in I569
13141           //
13142           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,23.4603,"rot532");
13143           sub2node->SetLineColor(kColorITS);
13144           sub2node->SetVisibility(1);   
13145           //fNodes->Add(sub2node);
13146           sub1node->cd();
13147           //
13148           // Place copy #8 of ITS6 in I569
13149           //
13150           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,19.5503,"");
13151           sub2node->SetLineColor(kColorITS);
13152           sub2node->SetVisibility(1);
13153           //fNodes->Add(sub2node);
13154           sub1node->cd();
13155           //
13156           // Place copy #9 of ITS6 in I569
13157           //
13158           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,15.6403,"rot532");
13159           sub2node->SetLineColor(kColorITS);
13160           sub2node->SetVisibility(1);  
13161           //fNodes->Add(sub2node);
13162           sub1node->cd();
13163           //
13164           // Place copy #10 of ITS6 in I569
13165           //
13166           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,11.7303,"");
13167           sub2node->SetLineColor(kColorITS);
13168           sub2node->SetVisibility(1);
13169           //fNodes->Add(sub2node);
13170           sub1node->cd();
13171           //
13172           // Place copy #11 of ITS6 in I569
13173           //
13174           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,7.8203,"rot532");
13175           sub2node->SetLineColor(kColorITS);
13176           sub2node->SetVisibility(1);
13177           //fNodes->Add(sub2node);
13178           sub1node->cd();
13179           //
13180           // Place copy #12 of ITS6 in I569
13181           //
13182           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,3.9103,"");
13183           sub2node->SetLineColor(kColorITS);
13184           sub2node->SetVisibility(1);
13185           //fNodes->Add(sub2node);
13186           sub1node->cd();
13187           //
13188           // Place copy #13 of ITS6 in I569
13189           //
13190           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,0.0003,"");
13191           sub2node->SetLineColor(kColorITS);
13192           sub2node->SetVisibility(1);  
13193           //fNodes->Add(sub2node);
13194           sub1node->cd();
13195           //
13196           // Place copy #14 of ITS6 in I569
13197           //
13198           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-3.9097,"");
13199           sub2node->SetLineColor(kColorITS);
13200           sub2node->SetVisibility(1);
13201           //fNodes->Add(sub2node);
13202           sub1node->cd();
13203           //
13204           // Place copy #15 of ITS6 in I569
13205           //
13206           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-7.8197,"rot532");
13207           sub2node->SetLineColor(kColorITS);
13208           sub2node->SetVisibility(1);
13209           //fNodes->Add(sub2node);
13210           sub1node->cd();
13211           //
13212           // Place copy #16 of ITS6 in I569
13213           //
13214           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-11.7297,"");
13215           sub2node->SetLineColor(kColorITS);
13216           sub2node->SetVisibility(1);
13217           //fNodes->Add(sub2node);
13218           sub1node->cd();
13219           //
13220           // Place copy #17 of ITS6 in I569
13221           //
13222           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-15.6397,"");
13223           sub2node->SetLineColor(kColorITS);
13224           sub2node->SetVisibility(1);
13225           //fNodes->Add(sub2node);
13226           sub1node->cd();
13227           //
13228           // Place copy #18 of ITS6 in I569
13229           //
13230           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-19.5497,"");
13231           sub2node->SetLineColor(kColorITS);
13232           sub2node->SetVisibility(1);
13233           //fNodes->Add(sub2node);
13234           sub1node->cd();
13235           //
13236           // Place copy #19 of ITS6 in I569
13237           //
13238           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-23.4597,"rot532");
13239           sub2node->SetLineColor(kColorITS);
13240           sub2node->SetVisibility(1);   
13241           //fNodes->Add(sub2node);
13242           sub1node->cd();
13243           //
13244           // Place copy #20 of ITS6 in I569
13245           //
13246           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-27.3697,"");
13247           sub2node->SetLineColor(kColorITS);
13248           sub2node->SetVisibility(1);
13249           //fNodes->Add(sub2node);
13250           sub1node->cd();
13251           //
13252           // Place copy #21 of ITS6 in I569
13253           //
13254           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-31.2797,"rot532");
13255           sub2node->SetLineColor(kColorITS);
13256           sub2node->SetVisibility(1);
13257           //fNodes->Add(sub2node);
13258           sub1node->cd();
13259           //
13260           // Place copy #22 of ITS6 in I569
13261           //
13262           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-35.1897,"");
13263           sub2node->SetLineColor(kColorITS);
13264           sub2node->SetVisibility(1);
13265           //fNodes->Add(sub2node);
13266           sub1node->cd();
13267           //
13268           // Place copy #23 of ITS6 in I569
13269           //
13270           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-39.0997,"");
13271           sub2node->SetLineColor(kColorITS);
13272           sub2node->SetVisibility(1);
13273           //fNodes->Add(sub2node);
13274           sub1node->cd();
13275           //
13276           // Place copy #24 of ITS6 in I569
13277           //
13278           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-43.0097,"");
13279           sub2node->SetLineColor(kColorITS);
13280           sub2node->SetVisibility(1); 
13281           //fNodes->Add(sub2node);
13282           sub1node->cd();
13283           //
13284           // Place copy #25 of ITS6 in I569
13285           //
13286           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-46.9197,"rot532");
13287           sub2node->SetLineColor(kColorITS);
13288           sub2node->SetVisibility(1);
13289           //fNodes->Add(sub2node);
13290           sub1node->cd();                                                                                                                                                                                         
13291        //fNodes->Add(sub1node);
13292        node->cd();
13293        //
13294        // Place copy #32 of I569 in IT56
13295        //
13296        sub1node = new TNode("I569","I569","I569",32.1494,29.5956,0.,"rot547");
13297        sub1node->SetLineColor(kColorITS);
13298        sub1node->SetVisibility(0);
13299        sub1node->cd();
13300           //
13301           // Place copy #1 of ITS6 in I569
13302           //
13303           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,46.9203,"rot532");
13304           sub2node->SetLineColor(kColorITS);
13305           sub2node->SetVisibility(1);
13306           //fNodes->Add(sub2node);
13307           sub1node->cd();
13308           //
13309           // Place copy #2 of ITS6 in I569
13310           //
13311           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,43.0103,"");
13312           sub2node->SetLineColor(kColorITS);
13313           sub2node->SetVisibility(1);
13314           //fNodes->Add(sub2node);
13315           sub1node->cd();
13316           //
13317           // Place copy #3 of ITS6 in I569
13318           //
13319           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,39.1003,"rot532");
13320           sub2node->SetLineColor(kColorITS);
13321           sub2node->SetVisibility(1);
13322           //fNodes->Add(sub2node);
13323           sub1node->cd();
13324           //
13325           // Place copy #4 of ITS6 in I569
13326           //
13327           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,35.1903,"");
13328           sub2node->SetLineColor(kColorITS);
13329           sub2node->SetVisibility(1);  
13330           //fNodes->Add(sub2node);
13331           sub1node->cd();
13332           //
13333           // Place copy #5 of ITS6 in I569
13334           //
13335           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,31.2803,"rot532");
13336           sub2node->SetLineColor(kColorITS);
13337           sub2node->SetVisibility(1);
13338           //fNodes->Add(sub2node);
13339           sub1node->cd();
13340           //
13341           // Place copy #6 of ITS6 in I569
13342           //
13343           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,27.3703,"");
13344           sub2node->SetLineColor(kColorITS);
13345           sub2node->SetVisibility(1);
13346           //fNodes->Add(sub2node);
13347           sub1node->cd();
13348           //
13349           // Place copy #7 of ITS6 in I569
13350           //
13351           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,23.4603,"rot532");
13352           sub2node->SetLineColor(kColorITS);
13353           sub2node->SetVisibility(1);   
13354           //fNodes->Add(sub2node);
13355           sub1node->cd();
13356           //
13357           // Place copy #8 of ITS6 in I569
13358           //
13359           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,19.5503,"");
13360           sub2node->SetLineColor(kColorITS);
13361           sub2node->SetVisibility(1);
13362           //fNodes->Add(sub2node);
13363           sub1node->cd();
13364           //
13365           // Place copy #9 of ITS6 in I569
13366           //
13367           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,15.6403,"rot532");
13368           sub2node->SetLineColor(kColorITS);
13369           sub2node->SetVisibility(1);  
13370           //fNodes->Add(sub2node);
13371           sub1node->cd();
13372           //
13373           // Place copy #10 of ITS6 in I569
13374           //
13375           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,11.7303,"");
13376           sub2node->SetLineColor(kColorITS);
13377           sub2node->SetVisibility(1);
13378           //fNodes->Add(sub2node);
13379           sub1node->cd();
13380           //
13381           // Place copy #11 of ITS6 in I569
13382           //
13383           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,7.8203,"rot532");
13384           sub2node->SetLineColor(kColorITS);
13385           sub2node->SetVisibility(1);
13386           //fNodes->Add(sub2node);
13387           sub1node->cd();
13388           //
13389           // Place copy #12 of ITS6 in I569
13390           //
13391           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,3.9103,"");
13392           sub2node->SetLineColor(kColorITS);
13393           sub2node->SetVisibility(1);
13394           //fNodes->Add(sub2node);
13395           sub1node->cd();
13396           //
13397           // Place copy #13 of ITS6 in I569
13398           //
13399           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,0.0003,"");
13400           sub2node->SetLineColor(kColorITS);
13401           sub2node->SetVisibility(1);  
13402           //fNodes->Add(sub2node);
13403           sub1node->cd();
13404           //
13405           // Place copy #14 of ITS6 in I569
13406           //
13407           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-3.9097,"");
13408           sub2node->SetLineColor(kColorITS);
13409           sub2node->SetVisibility(1);
13410           //fNodes->Add(sub2node);
13411           sub1node->cd();
13412           //
13413           // Place copy #15 of ITS6 in I569
13414           //
13415           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-7.8197,"rot532");
13416           sub2node->SetLineColor(kColorITS);
13417           sub2node->SetVisibility(1);
13418           //fNodes->Add(sub2node);
13419           sub1node->cd();
13420           //
13421           // Place copy #16 of ITS6 in I569
13422           //
13423           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-11.7297,"");
13424           sub2node->SetLineColor(kColorITS);
13425           sub2node->SetVisibility(1);
13426           //fNodes->Add(sub2node);
13427           sub1node->cd();
13428           //
13429           // Place copy #17 of ITS6 in I569
13430           //
13431           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-15.6397,"");
13432           sub2node->SetLineColor(kColorITS);
13433           sub2node->SetVisibility(1);
13434           //fNodes->Add(sub2node);
13435           sub1node->cd();
13436           //
13437           // Place copy #18 of ITS6 in I569
13438           //
13439           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-19.5497,"");
13440           sub2node->SetLineColor(kColorITS);
13441           sub2node->SetVisibility(1);
13442           //fNodes->Add(sub2node);
13443           sub1node->cd();
13444           //
13445           // Place copy #19 of ITS6 in I569
13446           //
13447           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-23.4597,"rot532");
13448           sub2node->SetLineColor(kColorITS);
13449           sub2node->SetVisibility(1);   
13450           //fNodes->Add(sub2node);
13451           sub1node->cd();
13452           //
13453           // Place copy #20 of ITS6 in I569
13454           //
13455           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-27.3697,"");
13456           sub2node->SetLineColor(kColorITS);
13457           sub2node->SetVisibility(1);
13458           //fNodes->Add(sub2node);
13459           sub1node->cd();
13460           //
13461           // Place copy #21 of ITS6 in I569
13462           //
13463           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-31.2797,"rot532");
13464           sub2node->SetLineColor(kColorITS);
13465           sub2node->SetVisibility(1);
13466           //fNodes->Add(sub2node);
13467           sub1node->cd();
13468           //
13469           // Place copy #22 of ITS6 in I569
13470           //
13471           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-35.1897,"");
13472           sub2node->SetLineColor(kColorITS);
13473           sub2node->SetVisibility(1);
13474           //fNodes->Add(sub2node);
13475           sub1node->cd();
13476           //
13477           // Place copy #23 of ITS6 in I569
13478           //
13479           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-39.0997,"");
13480           sub2node->SetLineColor(kColorITS);
13481           sub2node->SetVisibility(1);
13482           //fNodes->Add(sub2node);
13483           sub1node->cd();
13484           //
13485           // Place copy #24 of ITS6 in I569
13486           //
13487           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-43.0097,"");
13488           sub2node->SetLineColor(kColorITS);
13489           sub2node->SetVisibility(1); 
13490           //fNodes->Add(sub2node);
13491           sub1node->cd();
13492           //
13493           // Place copy #25 of ITS6 in I569
13494           //
13495           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-46.9197,"rot532");
13496           sub2node->SetLineColor(kColorITS);
13497           sub2node->SetVisibility(1);
13498           //fNodes->Add(sub2node);
13499           sub1node->cd();                                                                                                                                                                                         
13500        //fNodes->Add(sub1node);
13501        node->cd();
13502        //
13503        // Place copy #33 of I569 in IT56
13504        //
13505        sub1node = new TNode("I569","I569","I569",26.7459,34.3631,0.,"rot548");
13506        sub1node->SetLineColor(kColorITS);
13507        sub1node->SetVisibility(0);
13508        sub1node->cd();
13509           //
13510           // Place copy #1 of ITS6 in I569
13511           //
13512           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,46.9203,"rot532");
13513           sub2node->SetLineColor(kColorITS);
13514           sub2node->SetVisibility(1);
13515           //fNodes->Add(sub2node);
13516           sub1node->cd();
13517           //
13518           // Place copy #2 of ITS6 in I569
13519           //
13520           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,43.0103,"");
13521           sub2node->SetLineColor(kColorITS);
13522           sub2node->SetVisibility(1);
13523           //fNodes->Add(sub2node);
13524           sub1node->cd();
13525           //
13526           // Place copy #3 of ITS6 in I569
13527           //
13528           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,39.1003,"rot532");
13529           sub2node->SetLineColor(kColorITS);
13530           sub2node->SetVisibility(1);
13531           //fNodes->Add(sub2node);
13532           sub1node->cd();
13533           //
13534           // Place copy #4 of ITS6 in I569
13535           //
13536           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,35.1903,"");
13537           sub2node->SetLineColor(kColorITS);
13538           sub2node->SetVisibility(1);  
13539           //fNodes->Add(sub2node);
13540           sub1node->cd();
13541           //
13542           // Place copy #5 of ITS6 in I569
13543           //
13544           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,31.2803,"rot532");
13545           sub2node->SetLineColor(kColorITS);
13546           sub2node->SetVisibility(1);
13547           //fNodes->Add(sub2node);
13548           sub1node->cd();
13549           //
13550           // Place copy #6 of ITS6 in I569
13551           //
13552           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,27.3703,"");
13553           sub2node->SetLineColor(kColorITS);
13554           sub2node->SetVisibility(1);
13555           //fNodes->Add(sub2node);
13556           sub1node->cd();
13557           //
13558           // Place copy #7 of ITS6 in I569
13559           //
13560           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,23.4603,"rot532");
13561           sub2node->SetLineColor(kColorITS);
13562           sub2node->SetVisibility(1);   
13563           //fNodes->Add(sub2node);
13564           sub1node->cd();
13565           //
13566           // Place copy #8 of ITS6 in I569
13567           //
13568           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,19.5503,"");
13569           sub2node->SetLineColor(kColorITS);
13570           sub2node->SetVisibility(1);
13571           //fNodes->Add(sub2node);
13572           sub1node->cd();
13573           //
13574           // Place copy #9 of ITS6 in I569
13575           //
13576           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,15.6403,"rot532");
13577           sub2node->SetLineColor(kColorITS);
13578           sub2node->SetVisibility(1);  
13579           //fNodes->Add(sub2node);
13580           sub1node->cd();
13581           //
13582           // Place copy #10 of ITS6 in I569
13583           //
13584           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,11.7303,"");
13585           sub2node->SetLineColor(kColorITS);
13586           sub2node->SetVisibility(1);
13587           //fNodes->Add(sub2node);
13588           sub1node->cd();
13589           //
13590           // Place copy #11 of ITS6 in I569
13591           //
13592           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,7.8203,"rot532");
13593           sub2node->SetLineColor(kColorITS);
13594           sub2node->SetVisibility(1);
13595           //fNodes->Add(sub2node);
13596           sub1node->cd();
13597           //
13598           // Place copy #12 of ITS6 in I569
13599           //
13600           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,3.9103,"");
13601           sub2node->SetLineColor(kColorITS);
13602           sub2node->SetVisibility(1);
13603           //fNodes->Add(sub2node);
13604           sub1node->cd();
13605           //
13606           // Place copy #13 of ITS6 in I569
13607           //
13608           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,0.0003,"");
13609           sub2node->SetLineColor(kColorITS);
13610           sub2node->SetVisibility(1);  
13611           //fNodes->Add(sub2node);
13612           sub1node->cd();
13613           //
13614           // Place copy #14 of ITS6 in I569
13615           //
13616           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-3.9097,"");
13617           sub2node->SetLineColor(kColorITS);
13618           sub2node->SetVisibility(1);
13619           //fNodes->Add(sub2node);
13620           sub1node->cd();
13621           //
13622           // Place copy #15 of ITS6 in I569
13623           //
13624           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-7.8197,"rot532");
13625           sub2node->SetLineColor(kColorITS);
13626           sub2node->SetVisibility(1);
13627           //fNodes->Add(sub2node);
13628           sub1node->cd();
13629           //
13630           // Place copy #16 of ITS6 in I569
13631           //
13632           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-11.7297,"");
13633           sub2node->SetLineColor(kColorITS);
13634           sub2node->SetVisibility(1);
13635           //fNodes->Add(sub2node);
13636           sub1node->cd();
13637           //
13638           // Place copy #17 of ITS6 in I569
13639           //
13640           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-15.6397,"");
13641           sub2node->SetLineColor(kColorITS);
13642           sub2node->SetVisibility(1);
13643           //fNodes->Add(sub2node);
13644           sub1node->cd();
13645           //
13646           // Place copy #18 of ITS6 in I569
13647           //
13648           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-19.5497,"");
13649           sub2node->SetLineColor(kColorITS);
13650           sub2node->SetVisibility(1);
13651           //fNodes->Add(sub2node);
13652           sub1node->cd();
13653           //
13654           // Place copy #19 of ITS6 in I569
13655           //
13656           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-23.4597,"rot532");
13657           sub2node->SetLineColor(kColorITS);
13658           sub2node->SetVisibility(1);   
13659           //fNodes->Add(sub2node);
13660           sub1node->cd();
13661           //
13662           // Place copy #20 of ITS6 in I569
13663           //
13664           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-27.3697,"");
13665           sub2node->SetLineColor(kColorITS);
13666           sub2node->SetVisibility(1);
13667           //fNodes->Add(sub2node);
13668           sub1node->cd();
13669           //
13670           // Place copy #21 of ITS6 in I569
13671           //
13672           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-31.2797,"rot532");
13673           sub2node->SetLineColor(kColorITS);
13674           sub2node->SetVisibility(1);
13675           //fNodes->Add(sub2node);
13676           sub1node->cd();
13677           //
13678           // Place copy #22 of ITS6 in I569
13679           //
13680           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-35.1897,"");
13681           sub2node->SetLineColor(kColorITS);
13682           sub2node->SetVisibility(1);
13683           //fNodes->Add(sub2node);
13684           sub1node->cd();
13685           //
13686           // Place copy #23 of ITS6 in I569
13687           //
13688           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-39.0997,"");
13689           sub2node->SetLineColor(kColorITS);
13690           sub2node->SetVisibility(1);
13691           //fNodes->Add(sub2node);
13692           sub1node->cd();
13693           //
13694           // Place copy #24 of ITS6 in I569
13695           //
13696           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-43.0097,"");
13697           sub2node->SetLineColor(kColorITS);
13698           sub2node->SetVisibility(1); 
13699           //fNodes->Add(sub2node);
13700           sub1node->cd();
13701           //
13702           // Place copy #25 of ITS6 in I569
13703           //
13704           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-46.9197,"rot532");
13705           sub2node->SetLineColor(kColorITS);
13706           sub2node->SetVisibility(1);
13707           //fNodes->Add(sub2node);
13708           sub1node->cd();                                                                                                                                                                                         
13709        //fNodes->Add(sub1node);
13710        node->cd();
13711        //
13712        // Place copy #34 of I569 in IT56
13713        //
13714        sub1node = new TNode("I569","I569","I569",20.7978,38.431,0.,"rot549");
13715        sub1node->SetLineColor(kColorITS);
13716        sub1node->SetVisibility(0);
13717        sub1node->cd();
13718           //
13719           // Place copy #1 of ITS6 in I569
13720           //
13721           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,46.9203,"rot532");
13722           sub2node->SetLineColor(kColorITS);
13723           sub2node->SetVisibility(1);
13724           //fNodes->Add(sub2node);
13725           sub1node->cd();
13726           //
13727           // Place copy #2 of ITS6 in I569
13728           //
13729           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,43.0103,"");
13730           sub2node->SetLineColor(kColorITS);
13731           sub2node->SetVisibility(1);
13732           //fNodes->Add(sub2node);
13733           sub1node->cd();
13734           //
13735           // Place copy #3 of ITS6 in I569
13736           //
13737           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,39.1003,"rot532");
13738           sub2node->SetLineColor(kColorITS);
13739           sub2node->SetVisibility(1);
13740           //fNodes->Add(sub2node);
13741           sub1node->cd();
13742           //
13743           // Place copy #4 of ITS6 in I569
13744           //
13745           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,35.1903,"");
13746           sub2node->SetLineColor(kColorITS);
13747           sub2node->SetVisibility(1);  
13748           //fNodes->Add(sub2node);
13749           sub1node->cd();
13750           //
13751           // Place copy #5 of ITS6 in I569
13752           //
13753           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,31.2803,"rot532");
13754           sub2node->SetLineColor(kColorITS);
13755           sub2node->SetVisibility(1);
13756           //fNodes->Add(sub2node);
13757           sub1node->cd();
13758           //
13759           // Place copy #6 of ITS6 in I569
13760           //
13761           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,27.3703,"");
13762           sub2node->SetLineColor(kColorITS);
13763           sub2node->SetVisibility(1);
13764           //fNodes->Add(sub2node);
13765           sub1node->cd();
13766           //
13767           // Place copy #7 of ITS6 in I569
13768           //
13769           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,23.4603,"rot532");
13770           sub2node->SetLineColor(kColorITS);
13771           sub2node->SetVisibility(1);   
13772           //fNodes->Add(sub2node);
13773           sub1node->cd();
13774           //
13775           // Place copy #8 of ITS6 in I569
13776           //
13777           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,19.5503,"");
13778           sub2node->SetLineColor(kColorITS);
13779           sub2node->SetVisibility(1);
13780           //fNodes->Add(sub2node);
13781           sub1node->cd();
13782           //
13783           // Place copy #9 of ITS6 in I569
13784           //
13785           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,15.6403,"rot532");
13786           sub2node->SetLineColor(kColorITS);
13787           sub2node->SetVisibility(1);  
13788           //fNodes->Add(sub2node);
13789           sub1node->cd();
13790           //
13791           // Place copy #10 of ITS6 in I569
13792           //
13793           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,11.7303,"");
13794           sub2node->SetLineColor(kColorITS);
13795           sub2node->SetVisibility(1);
13796           //fNodes->Add(sub2node);
13797           sub1node->cd();
13798           //
13799           // Place copy #11 of ITS6 in I569
13800           //
13801           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,7.8203,"rot532");
13802           sub2node->SetLineColor(kColorITS);
13803           sub2node->SetVisibility(1);
13804           //fNodes->Add(sub2node);
13805           sub1node->cd();
13806           //
13807           // Place copy #12 of ITS6 in I569
13808           //
13809           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,3.9103,"");
13810           sub2node->SetLineColor(kColorITS);
13811           sub2node->SetVisibility(1);
13812           //fNodes->Add(sub2node);
13813           sub1node->cd();
13814           //
13815           // Place copy #13 of ITS6 in I569
13816           //
13817           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,0.0003,"");
13818           sub2node->SetLineColor(kColorITS);
13819           sub2node->SetVisibility(1);  
13820           //fNodes->Add(sub2node);
13821           sub1node->cd();
13822           //
13823           // Place copy #14 of ITS6 in I569
13824           //
13825           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-3.9097,"");
13826           sub2node->SetLineColor(kColorITS);
13827           sub2node->SetVisibility(1);
13828           //fNodes->Add(sub2node);
13829           sub1node->cd();
13830           //
13831           // Place copy #15 of ITS6 in I569
13832           //
13833           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-7.8197,"rot532");
13834           sub2node->SetLineColor(kColorITS);
13835           sub2node->SetVisibility(1);
13836           //fNodes->Add(sub2node);
13837           sub1node->cd();
13838           //
13839           // Place copy #16 of ITS6 in I569
13840           //
13841           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-11.7297,"");
13842           sub2node->SetLineColor(kColorITS);
13843           sub2node->SetVisibility(1);
13844           //fNodes->Add(sub2node);
13845           sub1node->cd();
13846           //
13847           // Place copy #17 of ITS6 in I569
13848           //
13849           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-15.6397,"");
13850           sub2node->SetLineColor(kColorITS);
13851           sub2node->SetVisibility(1);
13852           //fNodes->Add(sub2node);
13853           sub1node->cd();
13854           //
13855           // Place copy #18 of ITS6 in I569
13856           //
13857           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-19.5497,"");
13858           sub2node->SetLineColor(kColorITS);
13859           sub2node->SetVisibility(1);
13860           //fNodes->Add(sub2node);
13861           sub1node->cd();
13862           //
13863           // Place copy #19 of ITS6 in I569
13864           //
13865           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-23.4597,"rot532");
13866           sub2node->SetLineColor(kColorITS);
13867           sub2node->SetVisibility(1);   
13868           //fNodes->Add(sub2node);
13869           sub1node->cd();
13870           //
13871           // Place copy #20 of ITS6 in I569
13872           //
13873           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-27.3697,"");
13874           sub2node->SetLineColor(kColorITS);
13875           sub2node->SetVisibility(1);
13876           //fNodes->Add(sub2node);
13877           sub1node->cd();
13878           //
13879           // Place copy #21 of ITS6 in I569
13880           //
13881           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-31.2797,"rot532");
13882           sub2node->SetLineColor(kColorITS);
13883           sub2node->SetVisibility(1);
13884           //fNodes->Add(sub2node);
13885           sub1node->cd();
13886           //
13887           // Place copy #22 of ITS6 in I569
13888           //
13889           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-35.1897,"");
13890           sub2node->SetLineColor(kColorITS);
13891           sub2node->SetVisibility(1);
13892           //fNodes->Add(sub2node);
13893           sub1node->cd();
13894           //
13895           // Place copy #23 of ITS6 in I569
13896           //
13897           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-39.0997,"");
13898           sub2node->SetLineColor(kColorITS);
13899           sub2node->SetVisibility(1);
13900           //fNodes->Add(sub2node);
13901           sub1node->cd();
13902           //
13903           // Place copy #24 of ITS6 in I569
13904           //
13905           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-43.0097,"");
13906           sub2node->SetLineColor(kColorITS);
13907           sub2node->SetVisibility(1); 
13908           //fNodes->Add(sub2node);
13909           sub1node->cd();
13910           //
13911           // Place copy #25 of ITS6 in I569
13912           //
13913           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-46.9197,"rot532");
13914           sub2node->SetLineColor(kColorITS);
13915           sub2node->SetVisibility(1);
13916           //fNodes->Add(sub2node);
13917           sub1node->cd();                                                                                                                                                                                         
13918        //fNodes->Add(sub1node);
13919        node->cd();
13920        //
13921        // Place copy #35 of I569 in IT56
13922        //
13923        sub1node = new TNode("I569","I569","I569",14.139,41.1856,0.,"rot550");
13924        sub1node->SetLineColor(kColorITS);
13925        sub1node->SetVisibility(0);
13926        sub1node->cd();
13927           //
13928           // Place copy #1 of ITS6 in I569
13929           //
13930           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,46.9203,"rot532");
13931           sub2node->SetLineColor(kColorITS);
13932           sub2node->SetVisibility(1);
13933           //fNodes->Add(sub2node);
13934           sub1node->cd();
13935           //
13936           // Place copy #2 of ITS6 in I569
13937           //
13938           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,43.0103,"");
13939           sub2node->SetLineColor(kColorITS);
13940           sub2node->SetVisibility(1);
13941           //fNodes->Add(sub2node);
13942           sub1node->cd();
13943           //
13944           // Place copy #3 of ITS6 in I569
13945           //
13946           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,39.1003,"rot532");
13947           sub2node->SetLineColor(kColorITS);
13948           sub2node->SetVisibility(1);
13949           //fNodes->Add(sub2node);
13950           sub1node->cd();
13951           //
13952           // Place copy #4 of ITS6 in I569
13953           //
13954           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,35.1903,"");
13955           sub2node->SetLineColor(kColorITS);
13956           sub2node->SetVisibility(1);  
13957           //fNodes->Add(sub2node);
13958           sub1node->cd();
13959           //
13960           // Place copy #5 of ITS6 in I569
13961           //
13962           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,31.2803,"rot532");
13963           sub2node->SetLineColor(kColorITS);
13964           sub2node->SetVisibility(1);
13965           //fNodes->Add(sub2node);
13966           sub1node->cd();
13967           //
13968           // Place copy #6 of ITS6 in I569
13969           //
13970           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,27.3703,"");
13971           sub2node->SetLineColor(kColorITS);
13972           sub2node->SetVisibility(1);
13973           //fNodes->Add(sub2node);
13974           sub1node->cd();
13975           //
13976           // Place copy #7 of ITS6 in I569
13977           //
13978           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,23.4603,"rot532");
13979           sub2node->SetLineColor(kColorITS);
13980           sub2node->SetVisibility(1);   
13981           //fNodes->Add(sub2node);
13982           sub1node->cd();
13983           //
13984           // Place copy #8 of ITS6 in I569
13985           //
13986           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,19.5503,"");
13987           sub2node->SetLineColor(kColorITS);
13988           sub2node->SetVisibility(1);
13989           //fNodes->Add(sub2node);
13990           sub1node->cd();
13991           //
13992           // Place copy #9 of ITS6 in I569
13993           //
13994           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,15.6403,"rot532");
13995           sub2node->SetLineColor(kColorITS);
13996           sub2node->SetVisibility(1);  
13997           //fNodes->Add(sub2node);
13998           sub1node->cd();
13999           //
14000           // Place copy #10 of ITS6 in I569
14001           //
14002           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,11.7303,"");
14003           sub2node->SetLineColor(kColorITS);
14004           sub2node->SetVisibility(1);
14005           //fNodes->Add(sub2node);
14006           sub1node->cd();
14007           //
14008           // Place copy #11 of ITS6 in I569
14009           //
14010           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,7.8203,"rot532");
14011           sub2node->SetLineColor(kColorITS);
14012           sub2node->SetVisibility(1);
14013           //fNodes->Add(sub2node);
14014           sub1node->cd();
14015           //
14016           // Place copy #12 of ITS6 in I569
14017           //
14018           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,3.9103,"");
14019           sub2node->SetLineColor(kColorITS);
14020           sub2node->SetVisibility(1);
14021           //fNodes->Add(sub2node);
14022           sub1node->cd();
14023           //
14024           // Place copy #13 of ITS6 in I569
14025           //
14026           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,0.0003,"");
14027           sub2node->SetLineColor(kColorITS);
14028           sub2node->SetVisibility(1);  
14029           //fNodes->Add(sub2node);
14030           sub1node->cd();
14031           //
14032           // Place copy #14 of ITS6 in I569
14033           //
14034           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-3.9097,"");
14035           sub2node->SetLineColor(kColorITS);
14036           sub2node->SetVisibility(1);
14037           //fNodes->Add(sub2node);
14038           sub1node->cd();
14039           //
14040           // Place copy #15 of ITS6 in I569
14041           //
14042           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-7.8197,"rot532");
14043           sub2node->SetLineColor(kColorITS);
14044           sub2node->SetVisibility(1);
14045           //fNodes->Add(sub2node);
14046           sub1node->cd();
14047           //
14048           // Place copy #16 of ITS6 in I569
14049           //
14050           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-11.7297,"");
14051           sub2node->SetLineColor(kColorITS);
14052           sub2node->SetVisibility(1);
14053           //fNodes->Add(sub2node);
14054           sub1node->cd();
14055           //
14056           // Place copy #17 of ITS6 in I569
14057           //
14058           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-15.6397,"");
14059           sub2node->SetLineColor(kColorITS);
14060           sub2node->SetVisibility(1);
14061           //fNodes->Add(sub2node);
14062           sub1node->cd();
14063           //
14064           // Place copy #18 of ITS6 in I569
14065           //
14066           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-19.5497,"");
14067           sub2node->SetLineColor(kColorITS);
14068           sub2node->SetVisibility(1);
14069           //fNodes->Add(sub2node);
14070           sub1node->cd();
14071           //
14072           // Place copy #19 of ITS6 in I569
14073           //
14074           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-23.4597,"rot532");
14075           sub2node->SetLineColor(kColorITS);
14076           sub2node->SetVisibility(1);   
14077           //fNodes->Add(sub2node);
14078           sub1node->cd();
14079           //
14080           // Place copy #20 of ITS6 in I569
14081           //
14082           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-27.3697,"");
14083           sub2node->SetLineColor(kColorITS);
14084           sub2node->SetVisibility(1);
14085           //fNodes->Add(sub2node);
14086           sub1node->cd();
14087           //
14088           // Place copy #21 of ITS6 in I569
14089           //
14090           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-31.2797,"rot532");
14091           sub2node->SetLineColor(kColorITS);
14092           sub2node->SetVisibility(1);
14093           //fNodes->Add(sub2node);
14094           sub1node->cd();
14095           //
14096           // Place copy #22 of ITS6 in I569
14097           //
14098           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-35.1897,"");
14099           sub2node->SetLineColor(kColorITS);
14100           sub2node->SetVisibility(1);
14101           //fNodes->Add(sub2node);
14102           sub1node->cd();
14103           //
14104           // Place copy #23 of ITS6 in I569
14105           //
14106           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-39.0997,"");
14107           sub2node->SetLineColor(kColorITS);
14108           sub2node->SetVisibility(1);
14109           //fNodes->Add(sub2node);
14110           sub1node->cd();
14111           //
14112           // Place copy #24 of ITS6 in I569
14113           //
14114           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-43.0097,"");
14115           sub2node->SetLineColor(kColorITS);
14116           sub2node->SetVisibility(1); 
14117           //fNodes->Add(sub2node);
14118           sub1node->cd();
14119           //
14120           // Place copy #25 of ITS6 in I569
14121           //
14122           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-46.9197,"rot532");
14123           sub2node->SetLineColor(kColorITS);
14124           sub2node->SetVisibility(1);
14125           //fNodes->Add(sub2node);
14126           sub1node->cd();                                                                                                                                                                                         
14127        //fNodes->Add(sub1node);
14128        node->cd();
14129        //
14130        // Place copy #36 of I569 in IT56
14131        //
14132        sub1node = new TNode("I569","I569","I569",7.1924,43.1017,0.,"rot551");
14133        sub1node->SetLineColor(kColorITS);
14134        sub1node->SetVisibility(0);
14135        sub1node->cd();
14136           //
14137           // Place copy #1 of ITS6 in I569
14138           //
14139           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,46.9203,"rot532");
14140           sub2node->SetLineColor(kColorITS);
14141           sub2node->SetVisibility(1);
14142           //fNodes->Add(sub2node);
14143           sub1node->cd();
14144           //
14145           // Place copy #2 of ITS6 in I569
14146           //
14147           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,43.0103,"");
14148           sub2node->SetLineColor(kColorITS);
14149           sub2node->SetVisibility(1);
14150           //fNodes->Add(sub2node);
14151           sub1node->cd();
14152           //
14153           // Place copy #3 of ITS6 in I569
14154           //
14155           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,39.1003,"rot532");
14156           sub2node->SetLineColor(kColorITS);
14157           sub2node->SetVisibility(1);
14158           //fNodes->Add(sub2node);
14159           sub1node->cd();
14160           //
14161           // Place copy #4 of ITS6 in I569
14162           //
14163           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,35.1903,"");
14164           sub2node->SetLineColor(kColorITS);
14165           sub2node->SetVisibility(1);  
14166           //fNodes->Add(sub2node);
14167           sub1node->cd();
14168           //
14169           // Place copy #5 of ITS6 in I569
14170           //
14171           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,31.2803,"rot532");
14172           sub2node->SetLineColor(kColorITS);
14173           sub2node->SetVisibility(1);
14174           //fNodes->Add(sub2node);
14175           sub1node->cd();
14176           //
14177           // Place copy #6 of ITS6 in I569
14178           //
14179           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,27.3703,"");
14180           sub2node->SetLineColor(kColorITS);
14181           sub2node->SetVisibility(1);
14182           //fNodes->Add(sub2node);
14183           sub1node->cd();
14184           //
14185           // Place copy #7 of ITS6 in I569
14186           //
14187           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,23.4603,"rot532");
14188           sub2node->SetLineColor(kColorITS);
14189           sub2node->SetVisibility(1);   
14190           //fNodes->Add(sub2node);
14191           sub1node->cd();
14192           //
14193           // Place copy #8 of ITS6 in I569
14194           //
14195           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,19.5503,"");
14196           sub2node->SetLineColor(kColorITS);
14197           sub2node->SetVisibility(1);
14198           //fNodes->Add(sub2node);
14199           sub1node->cd();
14200           //
14201           // Place copy #9 of ITS6 in I569
14202           //
14203           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,15.6403,"rot532");
14204           sub2node->SetLineColor(kColorITS);
14205           sub2node->SetVisibility(1);  
14206           //fNodes->Add(sub2node);
14207           sub1node->cd();
14208           //
14209           // Place copy #10 of ITS6 in I569
14210           //
14211           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,11.7303,"");
14212           sub2node->SetLineColor(kColorITS);
14213           sub2node->SetVisibility(1);
14214           //fNodes->Add(sub2node);
14215           sub1node->cd();
14216           //
14217           // Place copy #11 of ITS6 in I569
14218           //
14219           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,7.8203,"rot532");
14220           sub2node->SetLineColor(kColorITS);
14221           sub2node->SetVisibility(1);
14222           //fNodes->Add(sub2node);
14223           sub1node->cd();
14224           //
14225           // Place copy #12 of ITS6 in I569
14226           //
14227           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,3.9103,"");
14228           sub2node->SetLineColor(kColorITS);
14229           sub2node->SetVisibility(1);
14230           //fNodes->Add(sub2node);
14231           sub1node->cd();
14232           //
14233           // Place copy #13 of ITS6 in I569
14234           //
14235           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,0.0003,"");
14236           sub2node->SetLineColor(kColorITS);
14237           sub2node->SetVisibility(1);  
14238           //fNodes->Add(sub2node);
14239           sub1node->cd();
14240           //
14241           // Place copy #14 of ITS6 in I569
14242           //
14243           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-3.9097,"");
14244           sub2node->SetLineColor(kColorITS);
14245           sub2node->SetVisibility(1);
14246           //fNodes->Add(sub2node);
14247           sub1node->cd();
14248           //
14249           // Place copy #15 of ITS6 in I569
14250           //
14251           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-7.8197,"rot532");
14252           sub2node->SetLineColor(kColorITS);
14253           sub2node->SetVisibility(1);
14254           //fNodes->Add(sub2node);
14255           sub1node->cd();
14256           //
14257           // Place copy #16 of ITS6 in I569
14258           //
14259           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-11.7297,"");
14260           sub2node->SetLineColor(kColorITS);
14261           sub2node->SetVisibility(1);
14262           //fNodes->Add(sub2node);
14263           sub1node->cd();
14264           //
14265           // Place copy #17 of ITS6 in I569
14266           //
14267           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-15.6397,"");
14268           sub2node->SetLineColor(kColorITS);
14269           sub2node->SetVisibility(1);
14270           //fNodes->Add(sub2node);
14271           sub1node->cd();
14272           //
14273           // Place copy #18 of ITS6 in I569
14274           //
14275           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-19.5497,"");
14276           sub2node->SetLineColor(kColorITS);
14277           sub2node->SetVisibility(1);
14278           //fNodes->Add(sub2node);
14279           sub1node->cd();
14280           //
14281           // Place copy #19 of ITS6 in I569
14282           //
14283           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-23.4597,"rot532");
14284           sub2node->SetLineColor(kColorITS);
14285           sub2node->SetVisibility(1);   
14286           //fNodes->Add(sub2node);
14287           sub1node->cd();
14288           //
14289           // Place copy #20 of ITS6 in I569
14290           //
14291           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-27.3697,"");
14292           sub2node->SetLineColor(kColorITS);
14293           sub2node->SetVisibility(1);
14294           //fNodes->Add(sub2node);
14295           sub1node->cd();
14296           //
14297           // Place copy #21 of ITS6 in I569
14298           //
14299           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-31.2797,"rot532");
14300           sub2node->SetLineColor(kColorITS);
14301           sub2node->SetVisibility(1);
14302           //fNodes->Add(sub2node);
14303           sub1node->cd();
14304           //
14305           // Place copy #22 of ITS6 in I569
14306           //
14307           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-35.1897,"");
14308           sub2node->SetLineColor(kColorITS);
14309           sub2node->SetVisibility(1);
14310           //fNodes->Add(sub2node);
14311           sub1node->cd();
14312           //
14313           // Place copy #23 of ITS6 in I569
14314           //
14315           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-39.0997,"");
14316           sub2node->SetLineColor(kColorITS);
14317           sub2node->SetVisibility(1);
14318           //fNodes->Add(sub2node);
14319           sub1node->cd();
14320           //
14321           // Place copy #24 of ITS6 in I569
14322           //
14323           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-43.0097,"");
14324           sub2node->SetLineColor(kColorITS);
14325           sub2node->SetVisibility(1); 
14326           //fNodes->Add(sub2node);
14327           sub1node->cd();
14328           //
14329           // Place copy #25 of ITS6 in I569
14330           //
14331           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-46.9197,"rot532");
14332           sub2node->SetLineColor(kColorITS);
14333           sub2node->SetVisibility(1);
14334           //fNodes->Add(sub2node);
14335           sub1node->cd();                                                                                                                                                                                         
14336        //fNodes->Add(sub1node);
14337        node->cd();
14338        //
14339        // Place copy #37 of I569 in IT56
14340        //
14341        sub1node = new TNode("I569","I569","I569",0.,43.545,0.,"");
14342        sub1node->SetLineColor(kColorITS);
14343        sub1node->SetVisibility(0);
14344        sub1node->cd();
14345           //
14346           // Place copy #1 of ITS6 in I569
14347           //
14348           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,46.9203,"rot532");
14349           sub2node->SetLineColor(kColorITS);
14350           sub2node->SetVisibility(1);
14351           //fNodes->Add(sub2node);
14352           sub1node->cd();
14353           //
14354           // Place copy #2 of ITS6 in I569
14355           //
14356           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,43.0103,"");
14357           sub2node->SetLineColor(kColorITS);
14358           sub2node->SetVisibility(1);
14359           //fNodes->Add(sub2node);
14360           sub1node->cd();
14361           //
14362           // Place copy #3 of ITS6 in I569
14363           //
14364           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,39.1003,"rot532");
14365           sub2node->SetLineColor(kColorITS);
14366           sub2node->SetVisibility(1);
14367           //fNodes->Add(sub2node);
14368           sub1node->cd();
14369           //
14370           // Place copy #4 of ITS6 in I569
14371           //
14372           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,35.1903,"");
14373           sub2node->SetLineColor(kColorITS);
14374           sub2node->SetVisibility(1);  
14375           //fNodes->Add(sub2node);
14376           sub1node->cd();
14377           //
14378           // Place copy #5 of ITS6 in I569
14379           //
14380           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,31.2803,"rot532");
14381           sub2node->SetLineColor(kColorITS);
14382           sub2node->SetVisibility(1);
14383           //fNodes->Add(sub2node);
14384           sub1node->cd();
14385           //
14386           // Place copy #6 of ITS6 in I569
14387           //
14388           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,27.3703,"");
14389           sub2node->SetLineColor(kColorITS);
14390           sub2node->SetVisibility(1);
14391           //fNodes->Add(sub2node);
14392           sub1node->cd();
14393           //
14394           // Place copy #7 of ITS6 in I569
14395           //
14396           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,23.4603,"rot532");
14397           sub2node->SetLineColor(kColorITS);
14398           sub2node->SetVisibility(1);   
14399           //fNodes->Add(sub2node);
14400           sub1node->cd();
14401           //
14402           // Place copy #8 of ITS6 in I569
14403           //
14404           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,19.5503,"");
14405           sub2node->SetLineColor(kColorITS);
14406           sub2node->SetVisibility(1);
14407           //fNodes->Add(sub2node);
14408           sub1node->cd();
14409           //
14410           // Place copy #9 of ITS6 in I569
14411           //
14412           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,15.6403,"rot532");
14413           sub2node->SetLineColor(kColorITS);
14414           sub2node->SetVisibility(1);  
14415           //fNodes->Add(sub2node);
14416           sub1node->cd();
14417           //
14418           // Place copy #10 of ITS6 in I569
14419           //
14420           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,11.7303,"");
14421           sub2node->SetLineColor(kColorITS);
14422           sub2node->SetVisibility(1);
14423           //fNodes->Add(sub2node);
14424           sub1node->cd();
14425           //
14426           // Place copy #11 of ITS6 in I569
14427           //
14428           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,7.8203,"rot532");
14429           sub2node->SetLineColor(kColorITS);
14430           sub2node->SetVisibility(1);
14431           //fNodes->Add(sub2node);
14432           sub1node->cd();
14433           //
14434           // Place copy #12 of ITS6 in I569
14435           //
14436           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,3.9103,"");
14437           sub2node->SetLineColor(kColorITS);
14438           sub2node->SetVisibility(1);
14439           //fNodes->Add(sub2node);
14440           sub1node->cd();
14441           //
14442           // Place copy #13 of ITS6 in I569
14443           //
14444           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,0.0003,"");
14445           sub2node->SetLineColor(kColorITS);
14446           sub2node->SetVisibility(1);  
14447           //fNodes->Add(sub2node);
14448           sub1node->cd();
14449           //
14450           // Place copy #14 of ITS6 in I569
14451           //
14452           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-3.9097,"");
14453           sub2node->SetLineColor(kColorITS);
14454           sub2node->SetVisibility(1);
14455           //fNodes->Add(sub2node);
14456           sub1node->cd();
14457           //
14458           // Place copy #15 of ITS6 in I569
14459           //
14460           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-7.8197,"rot532");
14461           sub2node->SetLineColor(kColorITS);
14462           sub2node->SetVisibility(1);
14463           //fNodes->Add(sub2node);
14464           sub1node->cd();
14465           //
14466           // Place copy #16 of ITS6 in I569
14467           //
14468           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-11.7297,"");
14469           sub2node->SetLineColor(kColorITS);
14470           sub2node->SetVisibility(1);
14471           //fNodes->Add(sub2node);
14472           sub1node->cd();
14473           //
14474           // Place copy #17 of ITS6 in I569
14475           //
14476           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-15.6397,"");
14477           sub2node->SetLineColor(kColorITS);
14478           sub2node->SetVisibility(1);
14479           //fNodes->Add(sub2node);
14480           sub1node->cd();
14481           //
14482           // Place copy #18 of ITS6 in I569
14483           //
14484           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-19.5497,"");
14485           sub2node->SetLineColor(kColorITS);
14486           sub2node->SetVisibility(1);
14487           //fNodes->Add(sub2node);
14488           sub1node->cd();
14489           //
14490           // Place copy #19 of ITS6 in I569
14491           //
14492           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-23.4597,"rot532");
14493           sub2node->SetLineColor(kColorITS);
14494           sub2node->SetVisibility(1);   
14495           //fNodes->Add(sub2node);
14496           sub1node->cd();
14497           //
14498           // Place copy #20 of ITS6 in I569
14499           //
14500           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-27.3697,"");
14501           sub2node->SetLineColor(kColorITS);
14502           sub2node->SetVisibility(1);
14503           //fNodes->Add(sub2node);
14504           sub1node->cd();
14505           //
14506           // Place copy #21 of ITS6 in I569
14507           //
14508           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-31.2797,"rot532");
14509           sub2node->SetLineColor(kColorITS);
14510           sub2node->SetVisibility(1);
14511           //fNodes->Add(sub2node);
14512           sub1node->cd();
14513           //
14514           // Place copy #22 of ITS6 in I569
14515           //
14516           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-35.1897,"");
14517           sub2node->SetLineColor(kColorITS);
14518           sub2node->SetVisibility(1);
14519           //fNodes->Add(sub2node);
14520           sub1node->cd();
14521           //
14522           // Place copy #23 of ITS6 in I569
14523           //
14524           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-39.0997,"");
14525           sub2node->SetLineColor(kColorITS);
14526           sub2node->SetVisibility(1);
14527           //fNodes->Add(sub2node);
14528           sub1node->cd();
14529           //
14530           // Place copy #24 of ITS6 in I569
14531           //
14532           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-43.0097,"");
14533           sub2node->SetLineColor(kColorITS);
14534           sub2node->SetVisibility(1); 
14535           //fNodes->Add(sub2node);
14536           sub1node->cd();
14537           //
14538           // Place copy #25 of ITS6 in I569
14539           //
14540           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-46.9197,"rot532");
14541           sub2node->SetLineColor(kColorITS);
14542           sub2node->SetVisibility(1);
14543           //fNodes->Add(sub2node);
14544           sub1node->cd();                                                                                                                                                                                         
14545        //fNodes->Add(sub1node);
14546        node->cd();
14547        //
14548        // Place copy #38 of I569 in IT56
14549        //
14550        sub1node = new TNode("I569","I569","I569",-7.1924,43.1017,0.,"rot552");
14551        sub1node->SetLineColor(kColorITS);
14552        sub1node->SetVisibility(0);
14553        sub1node->cd();
14554           //
14555           // Place copy #1 of ITS6 in I569
14556           //
14557           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,46.9203,"rot532");
14558           sub2node->SetLineColor(kColorITS);
14559           sub2node->SetVisibility(1);
14560           //fNodes->Add(sub2node);
14561           sub1node->cd();
14562           //
14563           // Place copy #2 of ITS6 in I569
14564           //
14565           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,43.0103,"");
14566           sub2node->SetLineColor(kColorITS);
14567           sub2node->SetVisibility(1);
14568           //fNodes->Add(sub2node);
14569           sub1node->cd();
14570           //
14571           // Place copy #3 of ITS6 in I569
14572           //
14573           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,39.1003,"rot532");
14574           sub2node->SetLineColor(kColorITS);
14575           sub2node->SetVisibility(1);
14576           //fNodes->Add(sub2node);
14577           sub1node->cd();
14578           //
14579           // Place copy #4 of ITS6 in I569
14580           //
14581           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,35.1903,"");
14582           sub2node->SetLineColor(kColorITS);
14583           sub2node->SetVisibility(1);  
14584           //fNodes->Add(sub2node);
14585           sub1node->cd();
14586           //
14587           // Place copy #5 of ITS6 in I569
14588           //
14589           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,31.2803,"rot532");
14590           sub2node->SetLineColor(kColorITS);
14591           sub2node->SetVisibility(1);
14592           //fNodes->Add(sub2node);
14593           sub1node->cd();
14594           //
14595           // Place copy #6 of ITS6 in I569
14596           //
14597           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,27.3703,"");
14598           sub2node->SetLineColor(kColorITS);
14599           sub2node->SetVisibility(1);
14600           //fNodes->Add(sub2node);
14601           sub1node->cd();
14602           //
14603           // Place copy #7 of ITS6 in I569
14604           //
14605           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,23.4603,"rot532");
14606           sub2node->SetLineColor(kColorITS);
14607           sub2node->SetVisibility(1);   
14608           //fNodes->Add(sub2node);
14609           sub1node->cd();
14610           //
14611           // Place copy #8 of ITS6 in I569
14612           //
14613           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,19.5503,"");
14614           sub2node->SetLineColor(kColorITS);
14615           sub2node->SetVisibility(1);
14616           //fNodes->Add(sub2node);
14617           sub1node->cd();
14618           //
14619           // Place copy #9 of ITS6 in I569
14620           //
14621           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,15.6403,"rot532");
14622           sub2node->SetLineColor(kColorITS);
14623           sub2node->SetVisibility(1);  
14624           //fNodes->Add(sub2node);
14625           sub1node->cd();
14626           //
14627           // Place copy #10 of ITS6 in I569
14628           //
14629           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,11.7303,"");
14630           sub2node->SetLineColor(kColorITS);
14631           sub2node->SetVisibility(1);
14632           //fNodes->Add(sub2node);
14633           sub1node->cd();
14634           //
14635           // Place copy #11 of ITS6 in I569
14636           //
14637           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,7.8203,"rot532");
14638           sub2node->SetLineColor(kColorITS);
14639           sub2node->SetVisibility(1);
14640           //fNodes->Add(sub2node);
14641           sub1node->cd();
14642           //
14643           // Place copy #12 of ITS6 in I569
14644           //
14645           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,3.9103,"");
14646           sub2node->SetLineColor(kColorITS);
14647           sub2node->SetVisibility(1);
14648           //fNodes->Add(sub2node);
14649           sub1node->cd();
14650           //
14651           // Place copy #13 of ITS6 in I569
14652           //
14653           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,0.0003,"");
14654           sub2node->SetLineColor(kColorITS);
14655           sub2node->SetVisibility(1);  
14656           //fNodes->Add(sub2node);
14657           sub1node->cd();
14658           //
14659           // Place copy #14 of ITS6 in I569
14660           //
14661           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-3.9097,"");
14662           sub2node->SetLineColor(kColorITS);
14663           sub2node->SetVisibility(1);
14664           //fNodes->Add(sub2node);
14665           sub1node->cd();
14666           //
14667           // Place copy #15 of ITS6 in I569
14668           //
14669           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-7.8197,"rot532");
14670           sub2node->SetLineColor(kColorITS);
14671           sub2node->SetVisibility(1);
14672           //fNodes->Add(sub2node);
14673           sub1node->cd();
14674           //
14675           // Place copy #16 of ITS6 in I569
14676           //
14677           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-11.7297,"");
14678           sub2node->SetLineColor(kColorITS);
14679           sub2node->SetVisibility(1);
14680           //fNodes->Add(sub2node);
14681           sub1node->cd();
14682           //
14683           // Place copy #17 of ITS6 in I569
14684           //
14685           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-15.6397,"");
14686           sub2node->SetLineColor(kColorITS);
14687           sub2node->SetVisibility(1);
14688           //fNodes->Add(sub2node);
14689           sub1node->cd();
14690           //
14691           // Place copy #18 of ITS6 in I569
14692           //
14693           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-19.5497,"");
14694           sub2node->SetLineColor(kColorITS);
14695           sub2node->SetVisibility(1);
14696           //fNodes->Add(sub2node);
14697           sub1node->cd();
14698           //
14699           // Place copy #19 of ITS6 in I569
14700           //
14701           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-23.4597,"rot532");
14702           sub2node->SetLineColor(kColorITS);
14703           sub2node->SetVisibility(1);   
14704           //fNodes->Add(sub2node);
14705           sub1node->cd();
14706           //
14707           // Place copy #20 of ITS6 in I569
14708           //
14709           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-27.3697,"");
14710           sub2node->SetLineColor(kColorITS);
14711           sub2node->SetVisibility(1);
14712           //fNodes->Add(sub2node);
14713           sub1node->cd();
14714           //
14715           // Place copy #21 of ITS6 in I569
14716           //
14717           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-31.2797,"rot532");
14718           sub2node->SetLineColor(kColorITS);
14719           sub2node->SetVisibility(1);
14720           //fNodes->Add(sub2node);
14721           sub1node->cd();
14722           //
14723           // Place copy #22 of ITS6 in I569
14724           //
14725           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-35.1897,"");
14726           sub2node->SetLineColor(kColorITS);
14727           sub2node->SetVisibility(1);
14728           //fNodes->Add(sub2node);
14729           sub1node->cd();
14730           //
14731           // Place copy #23 of ITS6 in I569
14732           //
14733           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-39.0997,"");
14734           sub2node->SetLineColor(kColorITS);
14735           sub2node->SetVisibility(1);
14736           //fNodes->Add(sub2node);
14737           sub1node->cd();
14738           //
14739           // Place copy #24 of ITS6 in I569
14740           //
14741           sub2node = new TNode("ITS6","ITS6","ITS6",0.,0.03,-43.0097,"");
14742           sub2node->SetLineColor(kColorITS);
14743           sub2node->SetVisibility(1); 
14744           //fNodes->Add(sub2node);
14745           sub1node->cd();
14746           //
14747           // Place copy #25 of ITS6 in I569
14748           //
14749           sub2node = new TNode("ITS6","ITS6","ITS6",0.,-0.03,-46.9197,"rot532");
14750           sub2node->SetLineColor(kColorITS);
14751           sub2node->SetVisibility(1);
14752           //fNodes->Add(sub2node);
14753           sub1node->cd();                                                                                                                                                                                         
14754        //fNodes->Add(sub1node);
14755        node->cd();
14756
14757
14758
14759     //fNodes->Add(node);
14760
14761     c1_1->cd();
14762     c1_1->SetTheta(90);
14763     c1_1->SetPhi(0);
14764     node->Draw();
14765     
14766     c1_2->cd();
14767     c1_2->SetTheta(0);
14768     c1_2->SetPhi(0);   
14769     node->Draw();
14770     
14771     c1_3->cd();
14772     c1_3->SetTheta(0);
14773     c1_3->SetPhi(90); 
14774     node->Draw();    
14775         
14776     c1_4->cd();
14777     c1_4->SetTheta(20);
14778     c1_4->SetPhi(140);        
14779     node->Draw();
14780
14781     c1->Update();
14782
14783   // --- Place SDD volumes into their mother volume 
14784
14785     // Place IT34 in Alice
14786     node = new TNode("IT34","IT34","IT34",0.,0.,0.,"");
14787     node->SetLineColor(kColorITS);
14788     node->SetVisibility(0);
14789     node->cd();
14790        //
14791        // Place copy #1 of I004 in IT34
14792        //
14793        sub1node = new TNode("I004","I004","I004",-3.2777,14.3607,0.,"rot321");
14794        sub1node->SetLineColor(kColorITS);
14795        sub1node->SetVisibility(0);
14796        sub1node->cd();
14797           //
14798           // Place copy #1 of ITS3 directly in I004
14799           //
14800           ySDD = Y_SDD_sep/2.+I302dits[1];
14801           sub2node = new TNode("ITS3","ITS3","ITS3",0.,ySDD,Z_SDD_lay3[0],"");
14802           sub2node->SetLineColor(kColorITS);
14803           sub2node->SetVisibility(1);
14804           //fNodes->Add(sub2node);
14805           sub1node->cd();        
14806           //
14807           // Place copy #2 of ITS3 directly in I004
14808           //
14809           ySDD = Y_SDD_sep/2.+I302dits[1];
14810           sub2node = new TNode("ITS3","ITS3","ITS3",0.,-ySDD,Z_SDD_lay3[1],"");
14811           sub2node->SetLineColor(kColorITS);
14812           sub2node->SetVisibility(1);
14813           //fNodes->Add(sub2node);
14814           sub1node->cd();        
14815           //
14816           // Place copy #3 of ITS3 directly in I004
14817           //
14818           ySDD = Y_SDD_sep/2.+I302dits[1];
14819           sub2node = new TNode("ITS3","ITS3","ITS3",0.,ySDD,Z_SDD_lay3[2],"");
14820           sub2node->SetLineColor(kColorITS);
14821           sub2node->SetVisibility(1);
14822           //fNodes->Add(sub2node);
14823           sub1node->cd();        
14824           //
14825           // Place copy #4 of ITS3 directly in I004
14826           //
14827           ySDD = Y_SDD_sep/2.+I302dits[1];
14828           sub2node = new TNode("ITS3","ITS3","ITS3",0.,-ySDD,Z_SDD_lay3[3],"");
14829           sub2node->SetLineColor(kColorITS);
14830           sub2node->SetVisibility(1);
14831           //fNodes->Add(sub2node);
14832           sub1node->cd();        
14833           //
14834           // Place copy #5 of ITS3 directly in I004
14835           //
14836           ySDD = Y_SDD_sep/2.+I302dits[1];
14837           sub2node = new TNode("ITS3","ITS3","ITS3",0.,ySDD,Z_SDD_lay3[4],"");
14838           sub2node->SetLineColor(kColorITS);
14839           sub2node->SetVisibility(1);
14840           //fNodes->Add(sub2node);
14841           sub1node->cd();        
14842           //
14843           // Place copy #6 of ITS3 directly in I004
14844           //
14845           ySDD = Y_SDD_sep/2.+I302dits[1];
14846           sub2node = new TNode("ITS3","ITS3","ITS3",0.,-ySDD,Z_SDD_lay3[5],"");
14847           sub2node->SetLineColor(kColorITS);
14848           sub2node->SetVisibility(1);
14849           //fNodes->Add(sub2node);
14850           sub1node->cd();        
14851        //fNodes->Add(sub1node);
14852        node->cd();       
14853        //
14854        // Place copy #2 of I004 in IT34
14855        //
14856        sub1node = new TNode("I004","I004","I004",-9.5581,11.9855,0.,"rot333");
14857        sub1node->SetLineColor(kColorITS);
14858        sub1node->SetVisibility(0);
14859        sub1node->cd();
14860           //
14861           // Place copy #1 of ITS3 directly in I004
14862           //
14863           ySDD = Y_SDD_sep/2.+I302dits[1];
14864           sub2node = new TNode("ITS3","ITS3","ITS3",0.,ySDD,Z_SDD_lay3[0],"");
14865           sub2node->SetLineColor(kColorITS);
14866           sub2node->SetVisibility(1);
14867           //fNodes->Add(sub2node);
14868           sub1node->cd();        
14869           //
14870           // Place copy #2 of ITS3 directly in I004
14871           //
14872           ySDD = Y_SDD_sep/2.+I302dits[1];
14873           sub2node = new TNode("ITS3","ITS3","ITS3",0.,-ySDD,Z_SDD_lay3[1],"");
14874           sub2node->SetLineColor(kColorITS);
14875           sub2node->SetVisibility(1);
14876           //fNodes->Add(sub2node);
14877           sub1node->cd();        
14878           //
14879           // Place copy #3 of ITS3 directly in I004
14880           //
14881           ySDD = Y_SDD_sep/2.+I302dits[1];
14882           sub2node = new TNode("ITS3","ITS3","ITS3",0.,ySDD,Z_SDD_lay3[2],"");
14883           sub2node->SetLineColor(kColorITS);
14884           sub2node->SetVisibility(1);
14885           //fNodes->Add(sub2node);
14886           sub1node->cd();        
14887           //
14888           // Place copy #4 of ITS3 directly in I004
14889           //
14890           ySDD = Y_SDD_sep/2.+I302dits[1];
14891           sub2node = new TNode("ITS3","ITS3","ITS3",0.,-ySDD,Z_SDD_lay3[3],"");
14892           sub2node->SetLineColor(kColorITS);
14893           sub2node->SetVisibility(1);
14894           //fNodes->Add(sub2node);
14895           sub1node->cd();        
14896           //
14897           // Place copy #5 of ITS3 directly in I004
14898           //
14899           ySDD = Y_SDD_sep/2.+I302dits[1];
14900           sub2node = new TNode("ITS3","ITS3","ITS3",0.,ySDD,Z_SDD_lay3[4],"");
14901           sub2node->SetLineColor(kColorITS);
14902           sub2node->SetVisibility(1);
14903           //fNodes->Add(sub2node);
14904           sub1node->cd();        
14905           //
14906           // Place copy #6 of ITS3 directly in I004
14907           //
14908           ySDD = Y_SDD_sep/2.+I302dits[1];
14909           sub2node = new TNode("ITS3","ITS3","ITS3",0.,-ySDD,Z_SDD_lay3[5],"");
14910           sub2node->SetLineColor(kColorITS);
14911           sub2node->SetVisibility(1);
14912           //fNodes->Add(sub2node);
14913           sub1node->cd();        
14914        //fNodes->Add(sub1node);
14915        node->cd();       
14916        //
14917        // Place copy #3 of I004 in IT34
14918        //
14919        sub1node = new TNode("I004","I004","I004",-13.2713,6.3911,0.,"rot336");
14920        sub1node->SetLineColor(kColorITS);
14921        sub1node->SetVisibility(0);
14922        sub1node->cd();
14923           //
14924           // Place copy #1 of ITS3 directly in I004
14925           //
14926           ySDD = Y_SDD_sep/2.+I302dits[1];
14927           sub2node = new TNode("ITS3","ITS3","ITS3",0.,ySDD,Z_SDD_lay3[0],"");
14928           sub2node->SetLineColor(kColorITS);
14929           sub2node->SetVisibility(1);
14930           //fNodes->Add(sub2node);
14931           sub1node->cd();        
14932           //
14933           // Place copy #2 of ITS3 directly in I004
14934           //
14935           ySDD = Y_SDD_sep/2.+I302dits[1];
14936           sub2node = new TNode("ITS3","ITS3","ITS3",0.,-ySDD,Z_SDD_lay3[1],"");
14937           sub2node->SetLineColor(kColorITS);
14938           sub2node->SetVisibility(1);
14939           //fNodes->Add(sub2node);
14940           sub1node->cd();        
14941           //
14942           // Place copy #3 of ITS3 directly in I004
14943           //
14944           ySDD = Y_SDD_sep/2.+I302dits[1];
14945           sub2node = new TNode("ITS3","ITS3","ITS3",0.,ySDD,Z_SDD_lay3[2],"");
14946           sub2node->SetLineColor(kColorITS);
14947           sub2node->SetVisibility(1);
14948           //fNodes->Add(sub2node);
14949           sub1node->cd();        
14950           //
14951           // Place copy #4 of ITS3 directly in I004
14952           //
14953           ySDD = Y_SDD_sep/2.+I302dits[1];
14954           sub2node = new TNode("ITS3","ITS3","ITS3",0.,-ySDD,Z_SDD_lay3[3],"");
14955           sub2node->SetLineColor(kColorITS);
14956           sub2node->SetVisibility(1);
14957           //fNodes->Add(sub2node);
14958           sub1node->cd();        
14959           //
14960           // Place copy #5 of ITS3 directly in I004
14961           //
14962           ySDD = Y_SDD_sep/2.+I302dits[1];
14963           sub2node = new TNode("ITS3","ITS3","ITS3",0.,ySDD,Z_SDD_lay3[4],"");
14964           sub2node->SetLineColor(kColorITS);
14965           sub2node->SetVisibility(1);
14966           //fNodes->Add(sub2node);
14967           sub1node->cd();        
14968           //
14969           // Place copy #6 of ITS3 directly in I004
14970           //
14971           ySDD = Y_SDD_sep/2.+I302dits[1];
14972           sub2node = new TNode("ITS3","ITS3","ITS3",0.,-ySDD,Z_SDD_lay3[5],"");
14973           sub2node->SetLineColor(kColorITS);
14974           sub2node->SetVisibility(1);
14975           //fNodes->Add(sub2node);
14976           sub1node->cd();        
14977        //fNodes->Add(sub1node);
14978        node->cd();       
14979        //
14980        // Place copy #4 of I004 in IT34
14981        //
14982        sub1node = new TNode("I004","I004","I004",-15.33,0.,0.,"rot350");
14983        sub1node->SetLineColor(kColorITS);
14984        sub1node->SetVisibility(0);
14985        sub1node->cd();
14986           //
14987           // Place copy #1 of ITS3 directly in I004
14988           //
14989           ySDD = Y_SDD_sep/2.+I302dits[1];
14990           sub2node = new TNode("ITS3","ITS3","ITS3",0.,ySDD,Z_SDD_lay3[0],"");
14991           sub2node->SetLineColor(kColorITS);
14992           sub2node->SetVisibility(1);
14993           //fNodes->Add(sub2node);
14994           sub1node->cd();        
14995           //
14996           // Place copy #2 of ITS3 directly in I004
14997           //
14998           ySDD = Y_SDD_sep/2.+I302dits[1];
14999           sub2node = new TNode("ITS3","ITS3","ITS3",0.,-ySDD,Z_SDD_lay3[1],"");
15000           sub2node->SetLineColor(kColorITS);
15001           sub2node->SetVisibility(1);
15002           //fNodes->Add(sub2node);
15003           sub1node->cd();        
15004           //
15005           // Place copy #3 of ITS3 directly in I004
15006           //
15007           ySDD = Y_SDD_sep/2.+I302dits[1];
15008           sub2node = new TNode("ITS3","ITS3","ITS3",0.,ySDD,Z_SDD_lay3[2],"");
15009           sub2node->SetLineColor(kColorITS);
15010           sub2node->SetVisibility(1);
15011           //fNodes->Add(sub2node);
15012           sub1node->cd();        
15013           //
15014           // Place copy #4 of ITS3 directly in I004
15015           //
15016           ySDD = Y_SDD_sep/2.+I302dits[1];
15017           sub2node = new TNode("ITS3","ITS3","ITS3",0.,-ySDD,Z_SDD_lay3[3],"");
15018           sub2node->SetLineColor(kColorITS);
15019           sub2node->SetVisibility(1);
15020           //fNodes->Add(sub2node);
15021           sub1node->cd();        
15022           //
15023           // Place copy #5 of ITS3 directly in I004
15024           //
15025           ySDD = Y_SDD_sep/2.+I302dits[1];
15026           sub2node = new TNode("ITS3","ITS3","ITS3",0.,ySDD,Z_SDD_lay3[4],"");
15027           sub2node->SetLineColor(kColorITS);
15028           sub2node->SetVisibility(1);
15029           //fNodes->Add(sub2node);
15030           sub1node->cd();        
15031           //
15032           // Place copy #6 of ITS3 directly in I004
15033           //
15034           ySDD = Y_SDD_sep/2.+I302dits[1];
15035           sub2node = new TNode("ITS3","ITS3","ITS3",0.,-ySDD,Z_SDD_lay3[5],"");
15036           sub2node->SetLineColor(kColorITS);
15037           sub2node->SetVisibility(1);
15038           //fNodes->Add(sub2node);
15039           sub1node->cd();        
15040        //fNodes->Add(sub1node);
15041        node->cd();       
15042        //
15043        // Place copy #5 of I004 in IT34
15044        //
15045        sub1node = new TNode("I004","I004","I004",-13.2713,-6.3911,0.,"rot313");
15046        sub1node->SetLineColor(kColorITS);
15047        sub1node->SetVisibility(0);
15048        sub1node->cd();
15049           //
15050           // Place copy #1 of ITS3 directly in I004
15051           //
15052           ySDD = Y_SDD_sep/2.+I302dits[1];
15053           sub2node = new TNode("ITS3","ITS3","ITS3",0.,ySDD,Z_SDD_lay3[0],"");
15054           sub2node->SetLineColor(kColorITS);
15055           sub2node->SetVisibility(1);
15056           //fNodes->Add(sub2node);
15057           sub1node->cd();        
15058           //
15059           // Place copy #2 of ITS3 directly in I004
15060           //
15061           ySDD = Y_SDD_sep/2.+I302dits[1];
15062           sub2node = new TNode("ITS3","ITS3","ITS3",0.,-ySDD,Z_SDD_lay3[1],"");
15063           sub2node->SetLineColor(kColorITS);
15064           sub2node->SetVisibility(1);
15065           //fNodes->Add(sub2node);
15066           sub1node->cd();        
15067           //
15068           // Place copy #3 of ITS3 directly in I004
15069           //
15070           ySDD = Y_SDD_sep/2.+I302dits[1];
15071           sub2node = new TNode("ITS3","ITS3","ITS3",0.,ySDD,Z_SDD_lay3[2],"");
15072           sub2node->SetLineColor(kColorITS);
15073           sub2node->SetVisibility(1);
15074           //fNodes->Add(sub2node);
15075           sub1node->cd();        
15076           //
15077           // Place copy #4 of ITS3 directly in I004
15078           //
15079           ySDD = Y_SDD_sep/2.+I302dits[1];
15080           sub2node = new TNode("ITS3","ITS3","ITS3",0.,-ySDD,Z_SDD_lay3[3],"");
15081           sub2node->SetLineColor(kColorITS);
15082           sub2node->SetVisibility(1);
15083           //fNodes->Add(sub2node);
15084           sub1node->cd();        
15085           //
15086           // Place copy #5 of ITS3 directly in I004
15087           //
15088           ySDD = Y_SDD_sep/2.+I302dits[1];
15089           sub2node = new TNode("ITS3","ITS3","ITS3",0.,ySDD,Z_SDD_lay3[4],"");
15090           sub2node->SetLineColor(kColorITS);
15091           sub2node->SetVisibility(1);
15092           //fNodes->Add(sub2node);
15093           sub1node->cd();        
15094           //
15095           // Place copy #6 of ITS3 directly in I004
15096           //
15097           ySDD = Y_SDD_sep/2.+I302dits[1];
15098           sub2node = new TNode("ITS3","ITS3","ITS3",0.,-ySDD,Z_SDD_lay3[5],"");
15099           sub2node->SetLineColor(kColorITS);
15100           sub2node->SetVisibility(1);
15101           //fNodes->Add(sub2node);
15102           sub1node->cd();        
15103        //fNodes->Add(sub1node);
15104        node->cd();       
15105        //
15106        // Place copy #6 of I004 in IT34
15107        //
15108        sub1node = new TNode("I004","I004","I004",-9.5581,-11.9855,0.,"rot311");
15109        sub1node->SetLineColor(kColorITS);
15110        sub1node->SetVisibility(0);
15111        sub1node->cd();
15112           //
15113           // Place copy #1 of ITS3 directly in I004
15114           //
15115           ySDD = Y_SDD_sep/2.+I302dits[1];
15116           sub2node = new TNode("ITS3","ITS3","ITS3",0.,ySDD,Z_SDD_lay3[0],"");
15117           sub2node->SetLineColor(kColorITS);
15118           sub2node->SetVisibility(1);
15119           //fNodes->Add(sub2node);
15120           sub1node->cd();        
15121           //
15122           // Place copy #2 of ITS3 directly in I004
15123           //
15124           ySDD = Y_SDD_sep/2.+I302dits[1];
15125           sub2node = new TNode("ITS3","ITS3","ITS3",0.,-ySDD,Z_SDD_lay3[1],"");
15126           sub2node->SetLineColor(kColorITS);
15127           sub2node->SetVisibility(1);
15128           //fNodes->Add(sub2node);
15129           sub1node->cd();        
15130           //
15131           // Place copy #3 of ITS3 directly in I004
15132           //
15133           ySDD = Y_SDD_sep/2.+I302dits[1];
15134           sub2node = new TNode("ITS3","ITS3","ITS3",0.,ySDD,Z_SDD_lay3[2],"");
15135           sub2node->SetLineColor(kColorITS);
15136           sub2node->SetVisibility(1);
15137           //fNodes->Add(sub2node);
15138           sub1node->cd();        
15139           //
15140           // Place copy #4 of ITS3 directly in I004
15141           //
15142           ySDD = Y_SDD_sep/2.+I302dits[1];
15143           sub2node = new TNode("ITS3","ITS3","ITS3",0.,-ySDD,Z_SDD_lay3[3],"");
15144           sub2node->SetLineColor(kColorITS);
15145           sub2node->SetVisibility(1);
15146           //fNodes->Add(sub2node);
15147           sub1node->cd();        
15148           //
15149           // Place copy #5 of ITS3 directly in I004
15150           //
15151           ySDD = Y_SDD_sep/2.+I302dits[1];
15152           sub2node = new TNode("ITS3","ITS3","ITS3",0.,ySDD,Z_SDD_lay3[4],"");
15153           sub2node->SetLineColor(kColorITS);
15154           sub2node->SetVisibility(1);
15155           //fNodes->Add(sub2node);
15156           sub1node->cd();        
15157           //
15158           // Place copy #6 of ITS3 directly in I004
15159           //
15160           ySDD = Y_SDD_sep/2.+I302dits[1];
15161           sub2node = new TNode("ITS3","ITS3","ITS3",0.,-ySDD,Z_SDD_lay3[5],"");
15162           sub2node->SetLineColor(kColorITS);
15163           sub2node->SetVisibility(1);
15164           //fNodes->Add(sub2node);
15165           sub1node->cd();        
15166        //fNodes->Add(sub1node);
15167        node->cd();       
15168        //
15169        // Place copy #7 of I004 in IT34
15170        //
15171        sub1node = new TNode("I004","I004","I004",-3.2777,-14.3607,0.,"rot310");
15172        sub1node->SetLineColor(kColorITS);
15173        sub1node->SetVisibility(0);
15174        sub1node->cd();
15175           //
15176           // Place copy #1 of ITS3 directly in I004
15177           //
15178           ySDD = Y_SDD_sep/2.+I302dits[1];
15179           sub2node = new TNode("ITS3","ITS3","ITS3",0.,ySDD,Z_SDD_lay3[0],"");
15180           sub2node->SetLineColor(kColorITS);
15181           sub2node->SetVisibility(1);
15182           //fNodes->Add(sub2node);
15183           sub1node->cd();        
15184           //
15185           // Place copy #2 of ITS3 directly in I004
15186           //
15187           ySDD = Y_SDD_sep/2.+I302dits[1];
15188           sub2node = new TNode("ITS3","ITS3","ITS3",0.,-ySDD,Z_SDD_lay3[1],"");
15189           sub2node->SetLineColor(kColorITS);
15190           sub2node->SetVisibility(1);
15191           //fNodes->Add(sub2node);
15192           sub1node->cd();        
15193           //
15194           // Place copy #3 of ITS3 directly in I004
15195           //
15196           ySDD = Y_SDD_sep/2.+I302dits[1];
15197           sub2node = new TNode("ITS3","ITS3","ITS3",0.,ySDD,Z_SDD_lay3[2],"");
15198           sub2node->SetLineColor(kColorITS);
15199           sub2node->SetVisibility(1);
15200           //fNodes->Add(sub2node);
15201           sub1node->cd();        
15202           //
15203           // Place copy #4 of ITS3 directly in I004
15204           //
15205           ySDD = Y_SDD_sep/2.+I302dits[1];
15206           sub2node = new TNode("ITS3","ITS3","ITS3",0.,-ySDD,Z_SDD_lay3[3],"");
15207           sub2node->SetLineColor(kColorITS);
15208           sub2node->SetVisibility(1);
15209           //fNodes->Add(sub2node);
15210           sub1node->cd();        
15211           //
15212           // Place copy #5 of ITS3 directly in I004
15213           //
15214           ySDD = Y_SDD_sep/2.+I302dits[1];
15215           sub2node = new TNode("ITS3","ITS3","ITS3",0.,ySDD,Z_SDD_lay3[4],"");
15216           sub2node->SetLineColor(kColorITS);
15217           sub2node->SetVisibility(1);
15218           //fNodes->Add(sub2node);
15219           sub1node->cd();        
15220           //
15221           // Place copy #6 of ITS3 directly in I004
15222           //
15223           ySDD = Y_SDD_sep/2.+I302dits[1];
15224           sub2node = new TNode("ITS3","ITS3","ITS3",0.,-ySDD,Z_SDD_lay3[5],"");
15225           sub2node->SetLineColor(kColorITS);
15226           sub2node->SetVisibility(1);
15227           //fNodes->Add(sub2node);
15228           sub1node->cd();        
15229        //fNodes->Add(sub1node);
15230        node->cd();       
15231        //
15232        // Place copy #8 of I004 in IT34
15233        //
15234        sub1node = new TNode("I004","I004","I004",3.4112,-14.9456,0.,"rot386");
15235        sub1node->SetLineColor(kColorITS);
15236        sub1node->SetVisibility(0);
15237        sub1node->cd();
15238           //
15239           // Place copy #1 of ITS3 directly in I004
15240           //
15241           ySDD = Y_SDD_sep/2.+I302dits[1];
15242           sub2node = new TNode("ITS3","ITS3","ITS3",0.,ySDD,Z_SDD_lay3[0],"");
15243           sub2node->SetLineColor(kColorITS);
15244           sub2node->SetVisibility(1);
15245           //fNodes->Add(sub2node);
15246           sub1node->cd();        
15247           //
15248           // Place copy #2 of ITS3 directly in I004
15249           //
15250           ySDD = Y_SDD_sep/2.+I302dits[1];
15251           sub2node = new TNode("ITS3","ITS3","ITS3",0.,-ySDD,Z_SDD_lay3[1],"");
15252           sub2node->SetLineColor(kColorITS);
15253           sub2node->SetVisibility(1);
15254           //fNodes->Add(sub2node);
15255           sub1node->cd();        
15256           //
15257           // Place copy #3 of ITS3 directly in I004
15258           //
15259           ySDD = Y_SDD_sep/2.+I302dits[1];
15260           sub2node = new TNode("ITS3","ITS3","ITS3",0.,ySDD,Z_SDD_lay3[2],"");
15261           sub2node->SetLineColor(kColorITS);
15262           sub2node->SetVisibility(1);
15263           //fNodes->Add(sub2node);
15264           sub1node->cd();        
15265           //
15266           // Place copy #4 of ITS3 directly in I004
15267           //
15268           ySDD = Y_SDD_sep/2.+I302dits[1];
15269           sub2node = new TNode("ITS3","ITS3","ITS3",0.,-ySDD,Z_SDD_lay3[3],"");
15270           sub2node->SetLineColor(kColorITS);
15271           sub2node->SetVisibility(1);
15272           //fNodes->Add(sub2node);
15273           sub1node->cd();        
15274           //
15275           // Place copy #5 of ITS3 directly in I004
15276           //
15277           ySDD = Y_SDD_sep/2.+I302dits[1];
15278           sub2node = new TNode("ITS3","ITS3","ITS3",0.,ySDD,Z_SDD_lay3[4],"");
15279           sub2node->SetLineColor(kColorITS);
15280           sub2node->SetVisibility(1);
15281           //fNodes->Add(sub2node);
15282           sub1node->cd();        
15283           //
15284           // Place copy #6 of ITS3 directly in I004
15285           //
15286           ySDD = Y_SDD_sep/2.+I302dits[1];
15287           sub2node = new TNode("ITS3","ITS3","ITS3",0.,-ySDD,Z_SDD_lay3[5],"");
15288           sub2node->SetLineColor(kColorITS);
15289           sub2node->SetVisibility(1);
15290           //fNodes->Add(sub2node);
15291           sub1node->cd();        
15292        //fNodes->Add(sub1node);
15293        node->cd();       
15294        //
15295        // Place copy #9 of I004 in IT34
15296        //
15297        sub1node = new TNode("I004","I004","I004",9.184,-11.5164,0.,"rot309");
15298        sub1node->SetLineColor(kColorITS);
15299        sub1node->SetVisibility(0);
15300        sub1node->cd();
15301           //
15302           // Place copy #1 of ITS3 directly in I004
15303           //
15304           ySDD = Y_SDD_sep/2.+I302dits[1];
15305           sub2node = new TNode("ITS3","ITS3","ITS3",0.,ySDD,Z_SDD_lay3[0],"");
15306           sub2node->SetLineColor(kColorITS);
15307           sub2node->SetVisibility(1);
15308           //fNodes->Add(sub2node);
15309           sub1node->cd();        
15310           //
15311           // Place copy #2 of ITS3 directly in I004
15312           //
15313           ySDD = Y_SDD_sep/2.+I302dits[1];
15314           sub2node = new TNode("ITS3","ITS3","ITS3",0.,-ySDD,Z_SDD_lay3[1],"");
15315           sub2node->SetLineColor(kColorITS);
15316           sub2node->SetVisibility(1);
15317           //fNodes->Add(sub2node);
15318           sub1node->cd();        
15319           //
15320           // Place copy #3 of ITS3 directly in I004
15321           //
15322           ySDD = Y_SDD_sep/2.+I302dits[1];
15323           sub2node = new TNode("ITS3","ITS3","ITS3",0.,ySDD,Z_SDD_lay3[2],"");
15324           sub2node->SetLineColor(kColorITS);
15325           sub2node->SetVisibility(1);
15326           //fNodes->Add(sub2node);
15327           sub1node->cd();        
15328           //
15329           // Place copy #4 of ITS3 directly in I004
15330           //
15331           ySDD = Y_SDD_sep/2.+I302dits[1];
15332           sub2node = new TNode("ITS3","ITS3","ITS3",0.,-ySDD,Z_SDD_lay3[3],"");
15333           sub2node->SetLineColor(kColorITS);
15334           sub2node->SetVisibility(1);
15335           //fNodes->Add(sub2node);
15336           sub1node->cd();        
15337           //
15338           // Place copy #5 of ITS3 directly in I004
15339           //
15340           ySDD = Y_SDD_sep/2.+I302dits[1];
15341           sub2node = new TNode("ITS3","ITS3","ITS3",0.,ySDD,Z_SDD_lay3[4],"");
15342           sub2node->SetLineColor(kColorITS);
15343           sub2node->SetVisibility(1);
15344           //fNodes->Add(sub2node);
15345           sub1node->cd();        
15346           //
15347           // Place copy #6 of ITS3 directly in I004
15348           //
15349           ySDD = Y_SDD_sep/2.+I302dits[1];
15350           sub2node = new TNode("ITS3","ITS3","ITS3",0.,-ySDD,Z_SDD_lay3[5],"");
15351           sub2node->SetLineColor(kColorITS);
15352           sub2node->SetVisibility(1);
15353           //fNodes->Add(sub2node);
15354           sub1node->cd();        
15355        //fNodes->Add(sub1node);
15356        node->cd();       
15357        //
15358        // Place copy #10 of I004 in IT34
15359        //
15360        sub1node = new TNode("I004","I004","I004",13.8119,-6.6514,0.,"rot308");
15361        sub1node->SetLineColor(kColorITS);
15362        sub1node->SetVisibility(0);
15363        sub1node->cd();
15364           //
15365           // Place copy #1 of ITS3 directly in I004
15366           //
15367           ySDD = Y_SDD_sep/2.+I302dits[1];
15368           sub2node = new TNode("ITS3","ITS3","ITS3",0.,ySDD,Z_SDD_lay3[0],"");
15369           sub2node->SetLineColor(kColorITS);
15370           sub2node->SetVisibility(1);
15371           //fNodes->Add(sub2node);
15372           sub1node->cd();        
15373           //
15374           // Place copy #2 of ITS3 directly in I004
15375           //
15376           ySDD = Y_SDD_sep/2.+I302dits[1];
15377           sub2node = new TNode("ITS3","ITS3","ITS3",0.,-ySDD,Z_SDD_lay3[1],"");
15378           sub2node->SetLineColor(kColorITS);
15379           sub2node->SetVisibility(1);
15380           //fNodes->Add(sub2node);
15381           sub1node->cd();        
15382           //
15383           // Place copy #3 of ITS3 directly in I004
15384           //
15385           ySDD = Y_SDD_sep/2.+I302dits[1];
15386           sub2node = new TNode("ITS3","ITS3","ITS3",0.,ySDD,Z_SDD_lay3[2],"");
15387           sub2node->SetLineColor(kColorITS);
15388           sub2node->SetVisibility(1);
15389           //fNodes->Add(sub2node);
15390           sub1node->cd();        
15391           //
15392           // Place copy #4 of ITS3 directly in I004
15393           //
15394           ySDD = Y_SDD_sep/2.+I302dits[1];
15395           sub2node = new TNode("ITS3","ITS3","ITS3",0.,-ySDD,Z_SDD_lay3[3],"");
15396           sub2node->SetLineColor(kColorITS);
15397           sub2node->SetVisibility(1);
15398           //fNodes->Add(sub2node);
15399           sub1node->cd();        
15400           //
15401           // Place copy #5 of ITS3 directly in I004
15402           //
15403           ySDD = Y_SDD_sep/2.+I302dits[1];
15404           sub2node = new TNode("ITS3","ITS3","ITS3",0.,ySDD,Z_SDD_lay3[4],"");
15405           sub2node->SetLineColor(kColorITS);
15406           sub2node->SetVisibility(1);
15407           //fNodes->Add(sub2node);
15408           sub1node->cd();        
15409           //
15410           // Place copy #6 of ITS3 directly in I004
15411           //
15412           ySDD = Y_SDD_sep/2.+I302dits[1];
15413           sub2node = new TNode("ITS3","ITS3","ITS3",0.,-ySDD,Z_SDD_lay3[5],"");
15414           sub2node->SetLineColor(kColorITS);
15415           sub2node->SetVisibility(1);
15416           //fNodes->Add(sub2node);
15417           sub1node->cd();        
15418        //fNodes->Add(sub1node);
15419        node->cd();       
15420        //
15421        // Place copy #11 of I004 in IT34
15422        //
15423        sub1node = new TNode("I004","I004","I004",14.73,0.,0.,"rot356");
15424        sub1node->SetLineColor(kColorITS);
15425        sub1node->SetVisibility(0);
15426        sub1node->cd();
15427           //
15428           // Place copy #1 of ITS3 directly in I004
15429           //
15430           ySDD = Y_SDD_sep/2.+I302dits[1];
15431           sub2node = new TNode("ITS3","ITS3","ITS3",0.,ySDD,Z_SDD_lay3[0],"");
15432           sub2node->SetLineColor(kColorITS);
15433           sub2node->SetVisibility(1);
15434           //fNodes->Add(sub2node);
15435           sub1node->cd();        
15436           //
15437           // Place copy #2 of ITS3 directly in I004
15438           //
15439           ySDD = Y_SDD_sep/2.+I302dits[1];
15440           sub2node = new TNode("ITS3","ITS3","ITS3",0.,-ySDD,Z_SDD_lay3[1],"");
15441           sub2node->SetLineColor(kColorITS);
15442           sub2node->SetVisibility(1);
15443           //fNodes->Add(sub2node);
15444           sub1node->cd();        
15445           //
15446           // Place copy #3 of ITS3 directly in I004
15447           //
15448           ySDD = Y_SDD_sep/2.+I302dits[1];
15449           sub2node = new TNode("ITS3","ITS3","ITS3",0.,ySDD,Z_SDD_lay3[2],"");
15450           sub2node->SetLineColor(kColorITS);
15451           sub2node->SetVisibility(1);
15452           //fNodes->Add(sub2node);
15453           sub1node->cd();        
15454           //
15455           // Place copy #4 of ITS3 directly in I004
15456           //
15457           ySDD = Y_SDD_sep/2.+I302dits[1];
15458           sub2node = new TNode("ITS3","ITS3","ITS3",0.,-ySDD,Z_SDD_lay3[3],"");
15459           sub2node->SetLineColor(kColorITS);
15460           sub2node->SetVisibility(1);
15461           //fNodes->Add(sub2node);
15462           sub1node->cd();        
15463           //
15464           // Place copy #5 of ITS3 directly in I004
15465           //
15466           ySDD = Y_SDD_sep/2.+I302dits[1];
15467           sub2node = new TNode("ITS3","ITS3","ITS3",0.,ySDD,Z_SDD_lay3[4],"");
15468           sub2node->SetLineColor(kColorITS);
15469           sub2node->SetVisibility(1);
15470           //fNodes->Add(sub2node);
15471           sub1node->cd();        
15472           //
15473           // Place copy #6 of ITS3 directly in I004
15474           //
15475           ySDD = Y_SDD_sep/2.+I302dits[1];
15476           sub2node = new TNode("ITS3","ITS3","ITS3",0.,-ySDD,Z_SDD_lay3[5],"");
15477           sub2node->SetLineColor(kColorITS);
15478           sub2node->SetVisibility(1);
15479           //fNodes->Add(sub2node);
15480           sub1node->cd();        
15481        //fNodes->Add(sub1node);
15482        node->cd();       
15483        //
15484        // Place copy #12 of I004 in IT34
15485        //
15486        sub1node = new TNode("I004","I004","I004",13.8119,6.6514,0.,"rot307");
15487        sub1node->SetLineColor(kColorITS);
15488        sub1node->SetVisibility(0);
15489        sub1node->cd();
15490           //
15491           // Place copy #1 of ITS3 directly in I004
15492           //
15493           ySDD = Y_SDD_sep/2.+I302dits[1];
15494           sub2node = new TNode("ITS3","ITS3","ITS3",0.,ySDD,Z_SDD_lay3[0],"");
15495           sub2node->SetLineColor(kColorITS);
15496           sub2node->SetVisibility(1);
15497           //fNodes->Add(sub2node);
15498           sub1node->cd();        
15499           //
15500           // Place copy #2 of ITS3 directly in I004
15501           //
15502           ySDD = Y_SDD_sep/2.+I302dits[1];
15503           sub2node = new TNode("ITS3","ITS3","ITS3",0.,-ySDD,Z_SDD_lay3[1],"");
15504           sub2node->SetLineColor(kColorITS);
15505           sub2node->SetVisibility(1);
15506           //fNodes->Add(sub2node);
15507           sub1node->cd();        
15508           //
15509           // Place copy #3 of ITS3 directly in I004
15510           //
15511           ySDD = Y_SDD_sep/2.+I302dits[1];
15512           sub2node = new TNode("ITS3","ITS3","ITS3",0.,ySDD,Z_SDD_lay3[2],"");
15513           sub2node->SetLineColor(kColorITS);
15514           sub2node->SetVisibility(1);
15515           //fNodes->Add(sub2node);
15516           sub1node->cd();        
15517           //
15518           // Place copy #4 of ITS3 directly in I004
15519           //
15520           ySDD = Y_SDD_sep/2.+I302dits[1];
15521           sub2node = new TNode("ITS3","ITS3","ITS3",0.,-ySDD,Z_SDD_lay3[3],"");
15522           sub2node->SetLineColor(kColorITS);
15523           sub2node->SetVisibility(1);
15524           //fNodes->Add(sub2node);
15525           sub1node->cd();        
15526           //
15527           // Place copy #5 of ITS3 directly in I004
15528           //
15529           ySDD = Y_SDD_sep/2.+I302dits[1];
15530           sub2node = new TNode("ITS3","ITS3","ITS3",0.,ySDD,Z_SDD_lay3[4],"");
15531           sub2node->SetLineColor(kColorITS);
15532           sub2node->SetVisibility(1);
15533           //fNodes->Add(sub2node);
15534           sub1node->cd();        
15535           //
15536           // Place copy #6 of ITS3 directly in I004
15537           //
15538           ySDD = Y_SDD_sep/2.+I302dits[1];
15539           sub2node = new TNode("ITS3","ITS3","ITS3",0.,-ySDD,Z_SDD_lay3[5],"");
15540           sub2node->SetLineColor(kColorITS);
15541           sub2node->SetVisibility(1);
15542           //fNodes->Add(sub2node);
15543           sub1node->cd();        
15544        //fNodes->Add(sub1node);
15545        node->cd();       
15546        //
15547        // Place copy #13 of I004 in IT34
15548        //
15549        sub1node = new TNode("I004","I004","I004",9.184,11.5164,0.,"rot306");
15550        sub1node->SetLineColor(kColorITS);
15551        sub1node->SetVisibility(0);
15552        sub1node->cd();
15553           //
15554           // Place copy #1 of ITS3 directly in I004
15555           //
15556           ySDD = Y_SDD_sep/2.+I302dits[1];
15557           sub2node = new TNode("ITS3","ITS3","ITS3",0.,ySDD,Z_SDD_lay3[0],"");
15558           sub2node->SetLineColor(kColorITS);
15559           sub2node->SetVisibility(1);
15560           //fNodes->Add(sub2node);
15561           sub1node->cd();        
15562           //
15563           // Place copy #2 of ITS3 directly in I004
15564           //
15565           ySDD = Y_SDD_sep/2.+I302dits[1];
15566           sub2node = new TNode("ITS3","ITS3","ITS3",0.,-ySDD,Z_SDD_lay3[1],"");
15567           sub2node->SetLineColor(kColorITS);
15568           sub2node->SetVisibility(1);
15569           //fNodes->Add(sub2node);
15570           sub1node->cd();        
15571           //
15572           // Place copy #3 of ITS3 directly in I004
15573           //
15574           ySDD = Y_SDD_sep/2.+I302dits[1];
15575           sub2node = new TNode("ITS3","ITS3","ITS3",0.,ySDD,Z_SDD_lay3[2],"");
15576           sub2node->SetLineColor(kColorITS);
15577           sub2node->SetVisibility(1);
15578           //fNodes->Add(sub2node);
15579           sub1node->cd();        
15580           //
15581           // Place copy #4 of ITS3 directly in I004
15582           //
15583           ySDD = Y_SDD_sep/2.+I302dits[1];
15584           sub2node = new TNode("ITS3","ITS3","ITS3",0.,-ySDD,Z_SDD_lay3[3],"");
15585           sub2node->SetLineColor(kColorITS);
15586           sub2node->SetVisibility(1);
15587           //fNodes->Add(sub2node);
15588           sub1node->cd();        
15589           //
15590           // Place copy #5 of ITS3 directly in I004
15591           //
15592           ySDD = Y_SDD_sep/2.+I302dits[1];
15593           sub2node = new TNode("ITS3","ITS3","ITS3",0.,ySDD,Z_SDD_lay3[4],"");
15594           sub2node->SetLineColor(kColorITS);
15595           sub2node->SetVisibility(1);
15596           //fNodes->Add(sub2node);
15597           sub1node->cd();        
15598           //
15599           // Place copy #6 of ITS3 directly in I004
15600           //
15601           ySDD = Y_SDD_sep/2.+I302dits[1];
15602           sub2node = new TNode("ITS3","ITS3","ITS3",0.,-ySDD,Z_SDD_lay3[5],"");
15603           sub2node->SetLineColor(kColorITS);
15604           sub2node->SetVisibility(1);
15605           //fNodes->Add(sub2node);
15606           sub1node->cd();        
15607        //fNodes->Add(sub1node);
15608        node->cd();       
15609        //
15610        // Place copy #14 of I004 in IT34
15611        //
15612        sub1node = new TNode("I004","I004","I004",3.4113,14.9456,0.,"rot305");
15613        sub1node->SetLineColor(kColorITS);
15614        sub1node->SetVisibility(0);
15615        sub1node->cd();
15616           //
15617           // Place copy #1 of ITS3 directly in I004
15618           //
15619           ySDD = Y_SDD_sep/2.+I302dits[1];
15620           sub2node = new TNode("ITS3","ITS3","ITS3",0.,ySDD,Z_SDD_lay3[0],"");
15621           sub2node->SetLineColor(kColorITS);
15622           sub2node->SetVisibility(1);
15623           //fNodes->Add(sub2node);
15624           sub1node->cd();        
15625           //
15626           // Place copy #2 of ITS3 directly in I004
15627           //
15628           ySDD = Y_SDD_sep/2.+I302dits[1];
15629           sub2node = new TNode("ITS3","ITS3","ITS3",0.,-ySDD,Z_SDD_lay3[1],"");
15630           sub2node->SetLineColor(kColorITS);
15631           sub2node->SetVisibility(1);
15632           //fNodes->Add(sub2node);
15633           sub1node->cd();        
15634           //
15635           // Place copy #3 of ITS3 directly in I004
15636           //
15637           ySDD = Y_SDD_sep/2.+I302dits[1];
15638           sub2node = new TNode("ITS3","ITS3","ITS3",0.,ySDD,Z_SDD_lay3[2],"");
15639           sub2node->SetLineColor(kColorITS);
15640           sub2node->SetVisibility(1);
15641           //fNodes->Add(sub2node);
15642           sub1node->cd();        
15643           //
15644           // Place copy #4 of ITS3 directly in I004
15645           //
15646           ySDD = Y_SDD_sep/2.+I302dits[1];
15647           sub2node = new TNode("ITS3","ITS3","ITS3",0.,-ySDD,Z_SDD_lay3[3],"");
15648           sub2node->SetLineColor(kColorITS);
15649           sub2node->SetVisibility(1);
15650           //fNodes->Add(sub2node);
15651           sub1node->cd();        
15652           //
15653           // Place copy #5 of ITS3 directly in I004
15654           //
15655           ySDD = Y_SDD_sep/2.+I302dits[1];
15656           sub2node = new TNode("ITS3","ITS3","ITS3",0.,ySDD,Z_SDD_lay3[4],"");
15657           sub2node->SetLineColor(kColorITS);
15658           sub2node->SetVisibility(1);
15659           //fNodes->Add(sub2node);
15660           sub1node->cd();        
15661           //
15662           // Place copy #6 of ITS3 directly in I004
15663           //
15664           ySDD = Y_SDD_sep/2.+I302dits[1];
15665           sub2node = new TNode("ITS3","ITS3","ITS3",0.,-ySDD,Z_SDD_lay3[5],"");
15666           sub2node->SetLineColor(kColorITS);
15667           sub2node->SetVisibility(1);
15668           //fNodes->Add(sub2node);
15669           sub1node->cd();        
15670        //fNodes->Add(sub1node);
15671        node->cd();       
15672        //
15673        // Place copy #1 of I005 in IT34
15674        //
15675        sub1node = new TNode("I005","I005","I005",-3.3629,23.3895,-0.15,"rot335");
15676        sub1node->SetLineColor(kColorITS);
15677        sub1node->SetVisibility(0);
15678        sub1node->cd();
15679           //
15680           // Place copy #1 of ITS4 directly in I005
15681           //
15682           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
15683           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[0],"");
15684           sub2node->SetLineColor(kColorITS);
15685           sub2node->SetVisibility(1);
15686           //fNodes->Add(sub2node);
15687           sub1node->cd();        
15688           //
15689           // Place copy #2 of ITS4 directly in I005
15690           //
15691           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
15692           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[1],"");
15693           sub2node->SetLineColor(kColorITS);
15694           sub2node->SetVisibility(1);
15695           //fNodes->Add(sub2node);
15696           sub1node->cd();        
15697           //
15698           // Place copy #3 of ITS4 directly in I005
15699           //
15700           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
15701           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[2],"");
15702           sub2node->SetLineColor(kColorITS);
15703           sub2node->SetVisibility(1);
15704           //fNodes->Add(sub2node);
15705           sub1node->cd();        
15706           //
15707           // Place copy #4 of ITS4 directly in I005
15708           //
15709           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
15710           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[3],"");
15711           sub2node->SetLineColor(kColorITS);
15712           sub2node->SetVisibility(1);
15713           //fNodes->Add(sub2node);
15714           sub1node->cd();        
15715           //
15716           // Place copy #5 of ITS4 directly in I005
15717           //
15718           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
15719           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[4],"");
15720           sub2node->SetLineColor(kColorITS);
15721           sub2node->SetVisibility(1);
15722           //fNodes->Add(sub2node);
15723           sub1node->cd();        
15724           //
15725           // Place copy #6 of ITS4 directly in I005
15726           //
15727           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
15728           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[5],"");
15729           sub2node->SetLineColor(kColorITS);
15730           sub2node->SetVisibility(1);
15731           //fNodes->Add(sub2node);
15732           sub1node->cd();        
15733           //
15734           // Place copy #7 of ITS4 directly in I005
15735           //
15736           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
15737           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[6],"");
15738           sub2node->SetLineColor(kColorITS);
15739           sub2node->SetVisibility(1);
15740           //fNodes->Add(sub2node);
15741           sub1node->cd();        
15742           //
15743           // Place copy #8 of ITS4 directly in I005
15744           //
15745           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
15746           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[7],"");
15747           sub2node->SetLineColor(kColorITS);
15748           sub2node->SetVisibility(1);
15749           //fNodes->Add(sub2node);
15750           sub1node->cd();        
15751        //fNodes->Add(sub1node);
15752        node->cd();       
15753        //
15754        // Place copy #2 of I005 in IT34
15755        //
15756        sub1node = new TNode("I005","I005","I005",-10.0447,21.9949,-0.15,"rot332");
15757        sub1node->SetLineColor(kColorITS);
15758        sub1node->SetVisibility(0);
15759        sub1node->cd();
15760           //
15761           // Place copy #1 of ITS4 directly in I005
15762           //
15763           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
15764           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[0],"");
15765           sub2node->SetLineColor(kColorITS);
15766           sub2node->SetVisibility(1);
15767           //fNodes->Add(sub2node);
15768           sub1node->cd();        
15769           //
15770           // Place copy #2 of ITS4 directly in I005
15771           //
15772           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
15773           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[1],"");
15774           sub2node->SetLineColor(kColorITS);
15775           sub2node->SetVisibility(1);
15776           //fNodes->Add(sub2node);
15777           sub1node->cd();        
15778           //
15779           // Place copy #3 of ITS4 directly in I005
15780           //
15781           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
15782           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[2],"");
15783           sub2node->SetLineColor(kColorITS);
15784           sub2node->SetVisibility(1);
15785           //fNodes->Add(sub2node);
15786           sub1node->cd();        
15787           //
15788           // Place copy #4 of ITS4 directly in I005
15789           //
15790           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
15791           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[3],"");
15792           sub2node->SetLineColor(kColorITS);
15793           sub2node->SetVisibility(1);
15794           //fNodes->Add(sub2node);
15795           sub1node->cd();        
15796           //
15797           // Place copy #5 of ITS4 directly in I005
15798           //
15799           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
15800           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[4],"");
15801           sub2node->SetLineColor(kColorITS);
15802           sub2node->SetVisibility(1);
15803           //fNodes->Add(sub2node);
15804           sub1node->cd();        
15805           //
15806           // Place copy #6 of ITS4 directly in I005
15807           //
15808           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
15809           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[5],"");
15810           sub2node->SetLineColor(kColorITS);
15811           sub2node->SetVisibility(1);
15812           //fNodes->Add(sub2node);
15813           sub1node->cd();        
15814           //
15815           // Place copy #7 of ITS4 directly in I005
15816           //
15817           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
15818           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[6],"");
15819           sub2node->SetLineColor(kColorITS);
15820           sub2node->SetVisibility(1);
15821           //fNodes->Add(sub2node);
15822           sub1node->cd();        
15823           //
15824           // Place copy #8 of ITS4 directly in I005
15825           //
15826           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
15827           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[7],"");
15828           sub2node->SetLineColor(kColorITS);
15829           sub2node->SetVisibility(1);
15830           //fNodes->Add(sub2node);
15831           sub1node->cd();        
15832        //fNodes->Add(sub1node);
15833        node->cd();       
15834        //
15835        // Place copy #3 of I005 in IT34
15836        //
15837        sub1node = new TNode("I005","I005","I005",-15.4744,17.8584,-0.15,"rot331");
15838        sub1node->SetLineColor(kColorITS);
15839        sub1node->SetVisibility(0);
15840        sub1node->cd();
15841           //
15842           // Place copy #1 of ITS4 directly in I005
15843           //
15844           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
15845           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[0],"");
15846           sub2node->SetLineColor(kColorITS);
15847           sub2node->SetVisibility(1);
15848           //fNodes->Add(sub2node);
15849           sub1node->cd();        
15850           //
15851           // Place copy #2 of ITS4 directly in I005
15852           //
15853           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
15854           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[1],"");
15855           sub2node->SetLineColor(kColorITS);
15856           sub2node->SetVisibility(1);
15857           //fNodes->Add(sub2node);
15858           sub1node->cd();        
15859           //
15860           // Place copy #3 of ITS4 directly in I005
15861           //
15862           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
15863           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[2],"");
15864           sub2node->SetLineColor(kColorITS);
15865           sub2node->SetVisibility(1);
15866           //fNodes->Add(sub2node);
15867           sub1node->cd();        
15868           //
15869           // Place copy #4 of ITS4 directly in I005
15870           //
15871           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
15872           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[3],"");
15873           sub2node->SetLineColor(kColorITS);
15874           sub2node->SetVisibility(1);
15875           //fNodes->Add(sub2node);
15876           sub1node->cd();        
15877           //
15878           // Place copy #5 of ITS4 directly in I005
15879           //
15880           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
15881           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[4],"");
15882           sub2node->SetLineColor(kColorITS);
15883           sub2node->SetVisibility(1);
15884           //fNodes->Add(sub2node);
15885           sub1node->cd();        
15886           //
15887           // Place copy #6 of ITS4 directly in I005
15888           //
15889           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
15890           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[5],"");
15891           sub2node->SetLineColor(kColorITS);
15892           sub2node->SetVisibility(1);
15893           //fNodes->Add(sub2node);
15894           sub1node->cd();        
15895           //
15896           // Place copy #7 of ITS4 directly in I005
15897           //
15898           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
15899           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[6],"");
15900           sub2node->SetLineColor(kColorITS);
15901           sub2node->SetVisibility(1);
15902           //fNodes->Add(sub2node);
15903           sub1node->cd();        
15904           //
15905           // Place copy #8 of ITS4 directly in I005
15906           //
15907           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
15908           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[7],"");
15909           sub2node->SetLineColor(kColorITS);
15910           sub2node->SetVisibility(1);
15911           //fNodes->Add(sub2node);
15912           sub1node->cd();        
15913        //fNodes->Add(sub1node);
15914        node->cd();       
15915        //
15916        // Place copy #4 of I005 in IT34
15917        //
15918        sub1node = new TNode("I005","I005","I005",-20.3415,13.0727,-0.15,"rot366");
15919        sub1node->SetLineColor(kColorITS);
15920        sub1node->SetVisibility(0);
15921        sub1node->cd();
15922           //
15923           // Place copy #1 of ITS4 directly in I005
15924           //
15925           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
15926           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[0],"");
15927           sub2node->SetLineColor(kColorITS);
15928           sub2node->SetVisibility(1);
15929           //fNodes->Add(sub2node);
15930           sub1node->cd();        
15931           //
15932           // Place copy #2 of ITS4 directly in I005
15933           //
15934           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
15935           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[1],"");
15936           sub2node->SetLineColor(kColorITS);
15937           sub2node->SetVisibility(1);
15938           //fNodes->Add(sub2node);
15939           sub1node->cd();        
15940           //
15941           // Place copy #3 of ITS4 directly in I005
15942           //
15943           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
15944           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[2],"");
15945           sub2node->SetLineColor(kColorITS);
15946           sub2node->SetVisibility(1);
15947           //fNodes->Add(sub2node);
15948           sub1node->cd();        
15949           //
15950           // Place copy #4 of ITS4 directly in I005
15951           //
15952           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
15953           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[3],"");
15954           sub2node->SetLineColor(kColorITS);
15955           sub2node->SetVisibility(1);
15956           //fNodes->Add(sub2node);
15957           sub1node->cd();        
15958           //
15959           // Place copy #5 of ITS4 directly in I005
15960           //
15961           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
15962           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[4],"");
15963           sub2node->SetLineColor(kColorITS);
15964           sub2node->SetVisibility(1);
15965           //fNodes->Add(sub2node);
15966           sub1node->cd();        
15967           //
15968           // Place copy #6 of ITS4 directly in I005
15969           //
15970           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
15971           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[5],"");
15972           sub2node->SetLineColor(kColorITS);
15973           sub2node->SetVisibility(1);
15974           //fNodes->Add(sub2node);
15975           sub1node->cd();        
15976           //
15977           // Place copy #7 of ITS4 directly in I005
15978           //
15979           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
15980           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[6],"");
15981           sub2node->SetLineColor(kColorITS);
15982           sub2node->SetVisibility(1);
15983           //fNodes->Add(sub2node);
15984           sub1node->cd();        
15985           //
15986           // Place copy #8 of ITS4 directly in I005
15987           //
15988           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
15989           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[7],"");
15990           sub2node->SetLineColor(kColorITS);
15991           sub2node->SetVisibility(1);
15992           //fNodes->Add(sub2node);
15993           sub1node->cd();        
15994        //fNodes->Add(sub1node);
15995        node->cd();       
15996        //
15997        // Place copy #5 of I005 in IT34
15998        //
15999        sub1node = new TNode("I005","I005","I005",-22.6728,6.6573,-0.15,"rot330");
16000        sub1node->SetLineColor(kColorITS);
16001        sub1node->SetVisibility(0);
16002        sub1node->cd();
16003           //
16004           // Place copy #1 of ITS4 directly in I005
16005           //
16006           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16007           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[0],"");
16008           sub2node->SetLineColor(kColorITS);
16009           sub2node->SetVisibility(1);
16010           //fNodes->Add(sub2node);
16011           sub1node->cd();        
16012           //
16013           // Place copy #2 of ITS4 directly in I005
16014           //
16015           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16016           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[1],"");
16017           sub2node->SetLineColor(kColorITS);
16018           sub2node->SetVisibility(1);
16019           //fNodes->Add(sub2node);
16020           sub1node->cd();        
16021           //
16022           // Place copy #3 of ITS4 directly in I005
16023           //
16024           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16025           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[2],"");
16026           sub2node->SetLineColor(kColorITS);
16027           sub2node->SetVisibility(1);
16028           //fNodes->Add(sub2node);
16029           sub1node->cd();        
16030           //
16031           // Place copy #4 of ITS4 directly in I005
16032           //
16033           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16034           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[3],"");
16035           sub2node->SetLineColor(kColorITS);
16036           sub2node->SetVisibility(1);
16037           //fNodes->Add(sub2node);
16038           sub1node->cd();        
16039           //
16040           // Place copy #5 of ITS4 directly in I005
16041           //
16042           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16043           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[4],"");
16044           sub2node->SetLineColor(kColorITS);
16045           sub2node->SetVisibility(1);
16046           //fNodes->Add(sub2node);
16047           sub1node->cd();        
16048           //
16049           // Place copy #6 of ITS4 directly in I005
16050           //
16051           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16052           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[5],"");
16053           sub2node->SetLineColor(kColorITS);
16054           sub2node->SetVisibility(1);
16055           //fNodes->Add(sub2node);
16056           sub1node->cd();        
16057           //
16058           // Place copy #7 of ITS4 directly in I005
16059           //
16060           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16061           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[6],"");
16062           sub2node->SetLineColor(kColorITS);
16063           sub2node->SetVisibility(1);
16064           //fNodes->Add(sub2node);
16065           sub1node->cd();        
16066           //
16067           // Place copy #8 of ITS4 directly in I005
16068           //
16069           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16070           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[7],"");
16071           sub2node->SetLineColor(kColorITS);
16072           sub2node->SetVisibility(1);
16073           //fNodes->Add(sub2node);
16074           sub1node->cd();        
16075        //fNodes->Add(sub1node);
16076        node->cd();       
16077        //
16078        // Place copy #6 of I005 in IT34
16079        //
16080        sub1node = new TNode("I005","I005","I005",-24.18,0.,-0.15,"rot350");
16081        sub1node->SetLineColor(kColorITS);
16082        sub1node->SetVisibility(0);
16083        sub1node->cd();
16084           //
16085           // Place copy #1 of ITS4 directly in I005
16086           //
16087           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16088           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[0],"");
16089           sub2node->SetLineColor(kColorITS);
16090           sub2node->SetVisibility(1);
16091           //fNodes->Add(sub2node);
16092           sub1node->cd();        
16093           //
16094           // Place copy #2 of ITS4 directly in I005
16095           //
16096           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16097           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[1],"");
16098           sub2node->SetLineColor(kColorITS);
16099           sub2node->SetVisibility(1);
16100           //fNodes->Add(sub2node);
16101           sub1node->cd();        
16102           //
16103           // Place copy #3 of ITS4 directly in I005
16104           //
16105           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16106           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[2],"");
16107           sub2node->SetLineColor(kColorITS);
16108           sub2node->SetVisibility(1);
16109           //fNodes->Add(sub2node);
16110           sub1node->cd();        
16111           //
16112           // Place copy #4 of ITS4 directly in I005
16113           //
16114           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16115           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[3],"");
16116           sub2node->SetLineColor(kColorITS);
16117           sub2node->SetVisibility(1);
16118           //fNodes->Add(sub2node);
16119           sub1node->cd();        
16120           //
16121           // Place copy #5 of ITS4 directly in I005
16122           //
16123           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16124           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[4],"");
16125           sub2node->SetLineColor(kColorITS);
16126           sub2node->SetVisibility(1);
16127           //fNodes->Add(sub2node);
16128           sub1node->cd();        
16129           //
16130           // Place copy #6 of ITS4 directly in I005
16131           //
16132           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16133           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[5],"");
16134           sub2node->SetLineColor(kColorITS);
16135           sub2node->SetVisibility(1);
16136           //fNodes->Add(sub2node);
16137           sub1node->cd();        
16138           //
16139           // Place copy #7 of ITS4 directly in I005
16140           //
16141           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16142           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[6],"");
16143           sub2node->SetLineColor(kColorITS);
16144           sub2node->SetVisibility(1);
16145           //fNodes->Add(sub2node);
16146           sub1node->cd();        
16147           //
16148           // Place copy #8 of ITS4 directly in I005
16149           //
16150           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16151           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[7],"");
16152           sub2node->SetLineColor(kColorITS);
16153           sub2node->SetVisibility(1);
16154           //fNodes->Add(sub2node);
16155           sub1node->cd();        
16156        //fNodes->Add(sub1node);
16157        node->cd();       
16158        //
16159        // Place copy #7 of I005 in IT34
16160        //
16161        sub1node = new TNode("I005","I005","I005",-22.6728,-6.6573,-0.15,"rot329");
16162        sub1node->SetLineColor(kColorITS);
16163        sub1node->SetVisibility(0);
16164        sub1node->cd();
16165           //
16166           // Place copy #1 of ITS4 directly in I005
16167           //
16168           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16169           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[0],"");
16170           sub2node->SetLineColor(kColorITS);
16171           sub2node->SetVisibility(1);
16172           //fNodes->Add(sub2node);
16173           sub1node->cd();        
16174           //
16175           // Place copy #2 of ITS4 directly in I005
16176           //
16177           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16178           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[1],"");
16179           sub2node->SetLineColor(kColorITS);
16180           sub2node->SetVisibility(1);
16181           //fNodes->Add(sub2node);
16182           sub1node->cd();        
16183           //
16184           // Place copy #3 of ITS4 directly in I005
16185           //
16186           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16187           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[2],"");
16188           sub2node->SetLineColor(kColorITS);
16189           sub2node->SetVisibility(1);
16190           //fNodes->Add(sub2node);
16191           sub1node->cd();        
16192           //
16193           // Place copy #4 of ITS4 directly in I005
16194           //
16195           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16196           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[3],"");
16197           sub2node->SetLineColor(kColorITS);
16198           sub2node->SetVisibility(1);
16199           //fNodes->Add(sub2node);
16200           sub1node->cd();        
16201           //
16202           // Place copy #5 of ITS4 directly in I005
16203           //
16204           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16205           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[4],"");
16206           sub2node->SetLineColor(kColorITS);
16207           sub2node->SetVisibility(1);
16208           //fNodes->Add(sub2node);
16209           sub1node->cd();        
16210           //
16211           // Place copy #6 of ITS4 directly in I005
16212           //
16213           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16214           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[5],"");
16215           sub2node->SetLineColor(kColorITS);
16216           sub2node->SetVisibility(1);
16217           //fNodes->Add(sub2node);
16218           sub1node->cd();        
16219           //
16220           // Place copy #7 of ITS4 directly in I005
16221           //
16222           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16223           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[6],"");
16224           sub2node->SetLineColor(kColorITS);
16225           sub2node->SetVisibility(1);
16226           //fNodes->Add(sub2node);
16227           sub1node->cd();        
16228           //
16229           // Place copy #8 of ITS4 directly in I005
16230           //
16231           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16232           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[7],"");
16233           sub2node->SetLineColor(kColorITS);
16234           sub2node->SetVisibility(1);
16235           //fNodes->Add(sub2node);
16236           sub1node->cd();        
16237        //fNodes->Add(sub1node);
16238        node->cd();       
16239        //
16240        // Place copy #8 of I005 in IT34
16241        //
16242        sub1node = new TNode("I005","I005","I005",-20.3415,-13.0727,-0.15,"rot328");
16243        sub1node->SetLineColor(kColorITS);
16244        sub1node->SetVisibility(0);
16245        sub1node->cd();
16246           //
16247           // Place copy #1 of ITS4 directly in I005
16248           //
16249           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16250           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[0],"");
16251           sub2node->SetLineColor(kColorITS);
16252           sub2node->SetVisibility(1);
16253           //fNodes->Add(sub2node);
16254           sub1node->cd();        
16255           //
16256           // Place copy #2 of ITS4 directly in I005
16257           //
16258           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16259           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[1],"");
16260           sub2node->SetLineColor(kColorITS);
16261           sub2node->SetVisibility(1);
16262           //fNodes->Add(sub2node);
16263           sub1node->cd();        
16264           //
16265           // Place copy #3 of ITS4 directly in I005
16266           //
16267           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16268           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[2],"");
16269           sub2node->SetLineColor(kColorITS);
16270           sub2node->SetVisibility(1);
16271           //fNodes->Add(sub2node);
16272           sub1node->cd();        
16273           //
16274           // Place copy #4 of ITS4 directly in I005
16275           //
16276           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16277           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[3],"");
16278           sub2node->SetLineColor(kColorITS);
16279           sub2node->SetVisibility(1);
16280           //fNodes->Add(sub2node);
16281           sub1node->cd();        
16282           //
16283           // Place copy #5 of ITS4 directly in I005
16284           //
16285           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16286           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[4],"");
16287           sub2node->SetLineColor(kColorITS);
16288           sub2node->SetVisibility(1);
16289           //fNodes->Add(sub2node);
16290           sub1node->cd();        
16291           //
16292           // Place copy #6 of ITS4 directly in I005
16293           //
16294           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16295           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[5],"");
16296           sub2node->SetLineColor(kColorITS);
16297           sub2node->SetVisibility(1);
16298           //fNodes->Add(sub2node);
16299           sub1node->cd();        
16300           //
16301           // Place copy #7 of ITS4 directly in I005
16302           //
16303           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16304           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[6],"");
16305           sub2node->SetLineColor(kColorITS);
16306           sub2node->SetVisibility(1);
16307           //fNodes->Add(sub2node);
16308           sub1node->cd();        
16309           //
16310           // Place copy #8 of ITS4 directly in I005
16311           //
16312           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16313           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[7],"");
16314           sub2node->SetLineColor(kColorITS);
16315           sub2node->SetVisibility(1);
16316           //fNodes->Add(sub2node);
16317           sub1node->cd();        
16318        //fNodes->Add(sub1node);
16319        node->cd();       
16320        //
16321        // Place copy #9 of I005 in IT34
16322        //
16323        sub1node = new TNode("I005","I005","I005",-15.4744,-17.8584,-0.15,"rot327");
16324        sub1node->SetLineColor(kColorITS);
16325        sub1node->SetVisibility(0);
16326        sub1node->cd();
16327           //
16328           // Place copy #1 of ITS4 directly in I005
16329           //
16330           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16331           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[0],"");
16332           sub2node->SetLineColor(kColorITS);
16333           sub2node->SetVisibility(1);
16334           //fNodes->Add(sub2node);
16335           sub1node->cd();        
16336           //
16337           // Place copy #2 of ITS4 directly in I005
16338           //
16339           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16340           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[1],"");
16341           sub2node->SetLineColor(kColorITS);
16342           sub2node->SetVisibility(1);
16343           //fNodes->Add(sub2node);
16344           sub1node->cd();        
16345           //
16346           // Place copy #3 of ITS4 directly in I005
16347           //
16348           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16349           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[2],"");
16350           sub2node->SetLineColor(kColorITS);
16351           sub2node->SetVisibility(1);
16352           //fNodes->Add(sub2node);
16353           sub1node->cd();        
16354           //
16355           // Place copy #4 of ITS4 directly in I005
16356           //
16357           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16358           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[3],"");
16359           sub2node->SetLineColor(kColorITS);
16360           sub2node->SetVisibility(1);
16361           //fNodes->Add(sub2node);
16362           sub1node->cd();        
16363           //
16364           // Place copy #5 of ITS4 directly in I005
16365           //
16366           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16367           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[4],"");
16368           sub2node->SetLineColor(kColorITS);
16369           sub2node->SetVisibility(1);
16370           //fNodes->Add(sub2node);
16371           sub1node->cd();        
16372           //
16373           // Place copy #6 of ITS4 directly in I005
16374           //
16375           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16376           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[5],"");
16377           sub2node->SetLineColor(kColorITS);
16378           sub2node->SetVisibility(1);
16379           //fNodes->Add(sub2node);
16380           sub1node->cd();        
16381           //
16382           // Place copy #7 of ITS4 directly in I005
16383           //
16384           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16385           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[6],"");
16386           sub2node->SetLineColor(kColorITS);
16387           sub2node->SetVisibility(1);
16388           //fNodes->Add(sub2node);
16389           sub1node->cd();        
16390           //
16391           // Place copy #8 of ITS4 directly in I005
16392           //
16393           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16394           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[7],"");
16395           sub2node->SetLineColor(kColorITS);
16396           sub2node->SetVisibility(1);
16397           //fNodes->Add(sub2node);
16398           sub1node->cd();        
16399        //fNodes->Add(sub1node);
16400        node->cd();       
16401        //
16402        // Place copy #10 of I005 in IT34
16403        //
16404        sub1node = new TNode("I005","I005","I005",-10.0447,-21.9949,-0.15,"rot326");
16405        sub1node->SetLineColor(kColorITS);
16406        sub1node->SetVisibility(0);
16407        sub1node->cd();
16408           //
16409           // Place copy #1 of ITS4 directly in I005
16410           //
16411           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16412           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[0],"");
16413           sub2node->SetLineColor(kColorITS);
16414           sub2node->SetVisibility(1);
16415           //fNodes->Add(sub2node);
16416           sub1node->cd();        
16417           //
16418           // Place copy #2 of ITS4 directly in I005
16419           //
16420           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16421           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[1],"");
16422           sub2node->SetLineColor(kColorITS);
16423           sub2node->SetVisibility(1);
16424           //fNodes->Add(sub2node);
16425           sub1node->cd();        
16426           //
16427           // Place copy #3 of ITS4 directly in I005
16428           //
16429           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16430           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[2],"");
16431           sub2node->SetLineColor(kColorITS);
16432           sub2node->SetVisibility(1);
16433           //fNodes->Add(sub2node);
16434           sub1node->cd();        
16435           //
16436           // Place copy #4 of ITS4 directly in I005
16437           //
16438           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16439           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[3],"");
16440           sub2node->SetLineColor(kColorITS);
16441           sub2node->SetVisibility(1);
16442           //fNodes->Add(sub2node);
16443           sub1node->cd();        
16444           //
16445           // Place copy #5 of ITS4 directly in I005
16446           //
16447           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16448           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[4],"");
16449           sub2node->SetLineColor(kColorITS);
16450           sub2node->SetVisibility(1);
16451           //fNodes->Add(sub2node);
16452           sub1node->cd();        
16453           //
16454           // Place copy #6 of ITS4 directly in I005
16455           //
16456           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16457           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[5],"");
16458           sub2node->SetLineColor(kColorITS);
16459           sub2node->SetVisibility(1);
16460           //fNodes->Add(sub2node);
16461           sub1node->cd();        
16462           //
16463           // Place copy #7 of ITS4 directly in I005
16464           //
16465           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16466           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[6],"");
16467           sub2node->SetLineColor(kColorITS);
16468           sub2node->SetVisibility(1);
16469           //fNodes->Add(sub2node);
16470           sub1node->cd();        
16471           //
16472           // Place copy #8 of ITS4 directly in I005
16473           //
16474           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16475           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[7],"");
16476           sub2node->SetLineColor(kColorITS);
16477           sub2node->SetVisibility(1);
16478           //fNodes->Add(sub2node);
16479           sub1node->cd();        
16480        //fNodes->Add(sub1node);
16481        node->cd();       
16482        //
16483        // Place copy #11 of I005 in IT34
16484        //
16485        sub1node = new TNode("I005","I005","I005",-3.3629,-23.3895,-0.15,"rot325");
16486        sub1node->SetLineColor(kColorITS);
16487        sub1node->SetVisibility(0);
16488        sub1node->cd();
16489           //
16490           // Place copy #1 of ITS4 directly in I005
16491           //
16492           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16493           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[0],"");
16494           sub2node->SetLineColor(kColorITS);
16495           sub2node->SetVisibility(1);
16496           //fNodes->Add(sub2node);
16497           sub1node->cd();        
16498           //
16499           // Place copy #2 of ITS4 directly in I005
16500           //
16501           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16502           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[1],"");
16503           sub2node->SetLineColor(kColorITS);
16504           sub2node->SetVisibility(1);
16505           //fNodes->Add(sub2node);
16506           sub1node->cd();        
16507           //
16508           // Place copy #3 of ITS4 directly in I005
16509           //
16510           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16511           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[2],"");
16512           sub2node->SetLineColor(kColorITS);
16513           sub2node->SetVisibility(1);
16514           //fNodes->Add(sub2node);
16515           sub1node->cd();        
16516           //
16517           // Place copy #4 of ITS4 directly in I005
16518           //
16519           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16520           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[3],"");
16521           sub2node->SetLineColor(kColorITS);
16522           sub2node->SetVisibility(1);
16523           //fNodes->Add(sub2node);
16524           sub1node->cd();        
16525           //
16526           // Place copy #5 of ITS4 directly in I005
16527           //
16528           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16529           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[4],"");
16530           sub2node->SetLineColor(kColorITS);
16531           sub2node->SetVisibility(1);
16532           //fNodes->Add(sub2node);
16533           sub1node->cd();        
16534           //
16535           // Place copy #6 of ITS4 directly in I005
16536           //
16537           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16538           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[5],"");
16539           sub2node->SetLineColor(kColorITS);
16540           sub2node->SetVisibility(1);
16541           //fNodes->Add(sub2node);
16542           sub1node->cd();        
16543           //
16544           // Place copy #7 of ITS4 directly in I005
16545           //
16546           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16547           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[6],"");
16548           sub2node->SetLineColor(kColorITS);
16549           sub2node->SetVisibility(1);
16550           //fNodes->Add(sub2node);
16551           sub1node->cd();        
16552           //
16553           // Place copy #8 of ITS4 directly in I005
16554           //
16555           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16556           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[7],"");
16557           sub2node->SetLineColor(kColorITS);
16558           sub2node->SetVisibility(1);
16559           //fNodes->Add(sub2node);
16560           sub1node->cd();        
16561        //fNodes->Add(sub1node);
16562        node->cd();       
16563        //
16564        // Place copy #12 of I005 in IT34
16565        //
16566        sub1node = new TNode("I005","I005","I005",3.4412,-23.9339,-0.15,"rot324");
16567        sub1node->SetLineColor(kColorITS);
16568        sub1node->SetVisibility(0);
16569        sub1node->cd();
16570           //
16571           // Place copy #1 of ITS4 directly in I005
16572           //
16573           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16574           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[0],"");
16575           sub2node->SetLineColor(kColorITS);
16576           sub2node->SetVisibility(1);
16577           //fNodes->Add(sub2node);
16578           sub1node->cd();        
16579           //
16580           // Place copy #2 of ITS4 directly in I005
16581           //
16582           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16583           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[1],"");
16584           sub2node->SetLineColor(kColorITS);
16585           sub2node->SetVisibility(1);
16586           //fNodes->Add(sub2node);
16587           sub1node->cd();        
16588           //
16589           // Place copy #3 of ITS4 directly in I005
16590           //
16591           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16592           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[2],"");
16593           sub2node->SetLineColor(kColorITS);
16594           sub2node->SetVisibility(1);
16595           //fNodes->Add(sub2node);
16596           sub1node->cd();        
16597           //
16598           // Place copy #4 of ITS4 directly in I005
16599           //
16600           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16601           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[3],"");
16602           sub2node->SetLineColor(kColorITS);
16603           sub2node->SetVisibility(1);
16604           //fNodes->Add(sub2node);
16605           sub1node->cd();        
16606           //
16607           // Place copy #5 of ITS4 directly in I005
16608           //
16609           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16610           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[4],"");
16611           sub2node->SetLineColor(kColorITS);
16612           sub2node->SetVisibility(1);
16613           //fNodes->Add(sub2node);
16614           sub1node->cd();        
16615           //
16616           // Place copy #6 of ITS4 directly in I005
16617           //
16618           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16619           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[5],"");
16620           sub2node->SetLineColor(kColorITS);
16621           sub2node->SetVisibility(1);
16622           //fNodes->Add(sub2node);
16623           sub1node->cd();        
16624           //
16625           // Place copy #7 of ITS4 directly in I005
16626           //
16627           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16628           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[6],"");
16629           sub2node->SetLineColor(kColorITS);
16630           sub2node->SetVisibility(1);
16631           //fNodes->Add(sub2node);
16632           sub1node->cd();        
16633           //
16634           // Place copy #8 of ITS4 directly in I005
16635           //
16636           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16637           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[7],"");
16638           sub2node->SetLineColor(kColorITS);
16639           sub2node->SetVisibility(1);
16640           //fNodes->Add(sub2node);
16641           sub1node->cd();        
16642        //fNodes->Add(sub1node);
16643        node->cd();       
16644        //
16645        // Place copy #13 of I005 in IT34
16646        //
16647        sub1node = new TNode("I005","I005","I005",9.8163,-21.4946,-0.15,"rot323");
16648        sub1node->SetLineColor(kColorITS);
16649        sub1node->SetVisibility(0);
16650        sub1node->cd();
16651           //
16652           // Place copy #1 of ITS4 directly in I005
16653           //
16654           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16655           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[0],"");
16656           sub2node->SetLineColor(kColorITS);
16657           sub2node->SetVisibility(1);
16658           //fNodes->Add(sub2node);
16659           sub1node->cd();        
16660           //
16661           // Place copy #2 of ITS4 directly in I005
16662           //
16663           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16664           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[1],"");
16665           sub2node->SetLineColor(kColorITS);
16666           sub2node->SetVisibility(1);
16667           //fNodes->Add(sub2node);
16668           sub1node->cd();        
16669           //
16670           // Place copy #3 of ITS4 directly in I005
16671           //
16672           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16673           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[2],"");
16674           sub2node->SetLineColor(kColorITS);
16675           sub2node->SetVisibility(1);
16676           //fNodes->Add(sub2node);
16677           sub1node->cd();        
16678           //
16679           // Place copy #4 of ITS4 directly in I005
16680           //
16681           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16682           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[3],"");
16683           sub2node->SetLineColor(kColorITS);
16684           sub2node->SetVisibility(1);
16685           //fNodes->Add(sub2node);
16686           sub1node->cd();        
16687           //
16688           // Place copy #5 of ITS4 directly in I005
16689           //
16690           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16691           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[4],"");
16692           sub2node->SetLineColor(kColorITS);
16693           sub2node->SetVisibility(1);
16694           //fNodes->Add(sub2node);
16695           sub1node->cd();        
16696           //
16697           // Place copy #6 of ITS4 directly in I005
16698           //
16699           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16700           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[5],"");
16701           sub2node->SetLineColor(kColorITS);
16702           sub2node->SetVisibility(1);
16703           //fNodes->Add(sub2node);
16704           sub1node->cd();        
16705           //
16706           // Place copy #7 of ITS4 directly in I005
16707           //
16708           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16709           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[6],"");
16710           sub2node->SetLineColor(kColorITS);
16711           sub2node->SetVisibility(1);
16712           //fNodes->Add(sub2node);
16713           sub1node->cd();        
16714           //
16715           // Place copy #8 of ITS4 directly in I005
16716           //
16717           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16718           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[7],"");
16719           sub2node->SetLineColor(kColorITS);
16720           sub2node->SetVisibility(1);
16721           //fNodes->Add(sub2node);
16722           sub1node->cd();        
16723        //fNodes->Add(sub1node);
16724        node->cd();       
16725        //
16726        // Place copy #14 of I005 in IT34
16727        //
16728        sub1node = new TNode("I005","I005","I005",15.8345,-18.274,-0.15,"rot322");
16729        sub1node->SetLineColor(kColorITS);
16730        sub1node->SetVisibility(0);
16731        sub1node->cd();
16732           //
16733           // Place copy #1 of ITS4 directly in I005
16734           //
16735           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16736           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[0],"");
16737           sub2node->SetLineColor(kColorITS);
16738           sub2node->SetVisibility(1);
16739           //fNodes->Add(sub2node);
16740           sub1node->cd();        
16741           //
16742           // Place copy #2 of ITS4 directly in I005
16743           //
16744           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16745           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[1],"");
16746           sub2node->SetLineColor(kColorITS);
16747           sub2node->SetVisibility(1);
16748           //fNodes->Add(sub2node);
16749           sub1node->cd();        
16750           //
16751           // Place copy #3 of ITS4 directly in I005
16752           //
16753           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16754           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[2],"");
16755           sub2node->SetLineColor(kColorITS);
16756           sub2node->SetVisibility(1);
16757           //fNodes->Add(sub2node);
16758           sub1node->cd();        
16759           //
16760           // Place copy #4 of ITS4 directly in I005
16761           //
16762           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16763           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[3],"");
16764           sub2node->SetLineColor(kColorITS);
16765           sub2node->SetVisibility(1);
16766           //fNodes->Add(sub2node);
16767           sub1node->cd();        
16768           //
16769           // Place copy #5 of ITS4 directly in I005
16770           //
16771           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16772           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[4],"");
16773           sub2node->SetLineColor(kColorITS);
16774           sub2node->SetVisibility(1);
16775           //fNodes->Add(sub2node);
16776           sub1node->cd();        
16777           //
16778           // Place copy #6 of ITS4 directly in I005
16779           //
16780           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16781           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[5],"");
16782           sub2node->SetLineColor(kColorITS);
16783           sub2node->SetVisibility(1);
16784           //fNodes->Add(sub2node);
16785           sub1node->cd();        
16786           //
16787           // Place copy #7 of ITS4 directly in I005
16788           //
16789           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16790           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[6],"");
16791           sub2node->SetLineColor(kColorITS);
16792           sub2node->SetVisibility(1);
16793           //fNodes->Add(sub2node);
16794           sub1node->cd();        
16795           //
16796           // Place copy #8 of ITS4 directly in I005
16797           //
16798           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16799           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[7],"");
16800           sub2node->SetLineColor(kColorITS);
16801           sub2node->SetVisibility(1);
16802           //fNodes->Add(sub2node);
16803           sub1node->cd();        
16804        //fNodes->Add(sub1node);
16805        node->cd();       
16806        //
16807        // Place copy #15 of I005 in IT34
16808        //
16809        sub1node = new TNode("I005","I005","I005",19.8788,-12.7753,-0.15,"rot320");
16810        sub1node->SetLineColor(kColorITS);
16811        sub1node->SetVisibility(0);
16812        sub1node->cd();
16813           //
16814           // Place copy #1 of ITS4 directly in I005
16815           //
16816           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16817           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[0],"");
16818           sub2node->SetLineColor(kColorITS);
16819           sub2node->SetVisibility(1);
16820           //fNodes->Add(sub2node);
16821           sub1node->cd();        
16822           //
16823           // Place copy #2 of ITS4 directly in I005
16824           //
16825           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16826           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[1],"");
16827           sub2node->SetLineColor(kColorITS);
16828           sub2node->SetVisibility(1);
16829           //fNodes->Add(sub2node);
16830           sub1node->cd();        
16831           //
16832           // Place copy #3 of ITS4 directly in I005
16833           //
16834           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16835           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[2],"");
16836           sub2node->SetLineColor(kColorITS);
16837           sub2node->SetVisibility(1);
16838           //fNodes->Add(sub2node);
16839           sub1node->cd();        
16840           //
16841           // Place copy #4 of ITS4 directly in I005
16842           //
16843           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16844           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[3],"");
16845           sub2node->SetLineColor(kColorITS);
16846           sub2node->SetVisibility(1);
16847           //fNodes->Add(sub2node);
16848           sub1node->cd();        
16849           //
16850           // Place copy #5 of ITS4 directly in I005
16851           //
16852           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16853           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[4],"");
16854           sub2node->SetLineColor(kColorITS);
16855           sub2node->SetVisibility(1);
16856           //fNodes->Add(sub2node);
16857           sub1node->cd();        
16858           //
16859           // Place copy #6 of ITS4 directly in I005
16860           //
16861           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16862           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[5],"");
16863           sub2node->SetLineColor(kColorITS);
16864           sub2node->SetVisibility(1);
16865           //fNodes->Add(sub2node);
16866           sub1node->cd();        
16867           //
16868           // Place copy #7 of ITS4 directly in I005
16869           //
16870           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16871           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[6],"");
16872           sub2node->SetLineColor(kColorITS);
16873           sub2node->SetVisibility(1);
16874           //fNodes->Add(sub2node);
16875           sub1node->cd();        
16876           //
16877           // Place copy #8 of ITS4 directly in I005
16878           //
16879           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16880           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[7],"");
16881           sub2node->SetLineColor(kColorITS);
16882           sub2node->SetVisibility(1);
16883           //fNodes->Add(sub2node);
16884           sub1node->cd();        
16885        //fNodes->Add(sub1node);
16886        node->cd();       
16887        //
16888        // Place copy #16 of I005 in IT34
16889        //
16890        sub1node = new TNode("I005","I005","I005",23.2005,-6.8123,-0.15,"rot319");
16891        sub1node->SetLineColor(kColorITS);
16892        sub1node->SetVisibility(0);
16893        sub1node->cd();
16894           //
16895           // Place copy #1 of ITS4 directly in I005
16896           //
16897           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16898           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[0],"");
16899           sub2node->SetLineColor(kColorITS);
16900           sub2node->SetVisibility(1);
16901           //fNodes->Add(sub2node);
16902           sub1node->cd();        
16903           //
16904           // Place copy #2 of ITS4 directly in I005
16905           //
16906           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16907           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[1],"");
16908           sub2node->SetLineColor(kColorITS);
16909           sub2node->SetVisibility(1);
16910           //fNodes->Add(sub2node);
16911           sub1node->cd();        
16912           //
16913           // Place copy #3 of ITS4 directly in I005
16914           //
16915           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16916           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[2],"");
16917           sub2node->SetLineColor(kColorITS);
16918           sub2node->SetVisibility(1);
16919           //fNodes->Add(sub2node);
16920           sub1node->cd();        
16921           //
16922           // Place copy #4 of ITS4 directly in I005
16923           //
16924           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16925           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[3],"");
16926           sub2node->SetLineColor(kColorITS);
16927           sub2node->SetVisibility(1);
16928           //fNodes->Add(sub2node);
16929           sub1node->cd();        
16930           //
16931           // Place copy #5 of ITS4 directly in I005
16932           //
16933           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16934           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[4],"");
16935           sub2node->SetLineColor(kColorITS);
16936           sub2node->SetVisibility(1);
16937           //fNodes->Add(sub2node);
16938           sub1node->cd();        
16939           //
16940           // Place copy #6 of ITS4 directly in I005
16941           //
16942           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16943           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[5],"");
16944           sub2node->SetLineColor(kColorITS);
16945           sub2node->SetVisibility(1);
16946           //fNodes->Add(sub2node);
16947           sub1node->cd();        
16948           //
16949           // Place copy #7 of ITS4 directly in I005
16950           //
16951           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16952           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[6],"");
16953           sub2node->SetLineColor(kColorITS);
16954           sub2node->SetVisibility(1);
16955           //fNodes->Add(sub2node);
16956           sub1node->cd();        
16957           //
16958           // Place copy #8 of ITS4 directly in I005
16959           //
16960           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16961           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[7],"");
16962           sub2node->SetLineColor(kColorITS);
16963           sub2node->SetVisibility(1);
16964           //fNodes->Add(sub2node);
16965           sub1node->cd();        
16966        //fNodes->Add(sub1node);
16967        node->cd();       
16968        //
16969        // Place copy #17 of I005 in IT34
16970        //
16971        sub1node = new TNode("I005","I005","I005",23.63,0.,-0.15,"rot318");
16972        sub1node->SetLineColor(kColorITS);
16973        sub1node->SetVisibility(0);
16974        sub1node->cd();
16975           //
16976           // Place copy #1 of ITS4 directly in I005
16977           //
16978           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16979           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[0],"");
16980           sub2node->SetLineColor(kColorITS);
16981           sub2node->SetVisibility(1);
16982           //fNodes->Add(sub2node);
16983           sub1node->cd();        
16984           //
16985           // Place copy #2 of ITS4 directly in I005
16986           //
16987           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16988           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[1],"");
16989           sub2node->SetLineColor(kColorITS);
16990           sub2node->SetVisibility(1);
16991           //fNodes->Add(sub2node);
16992           sub1node->cd();        
16993           //
16994           // Place copy #3 of ITS4 directly in I005
16995           //
16996           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
16997           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[2],"");
16998           sub2node->SetLineColor(kColorITS);
16999           sub2node->SetVisibility(1);
17000           //fNodes->Add(sub2node);
17001           sub1node->cd();        
17002           //
17003           // Place copy #4 of ITS4 directly in I005
17004           //
17005           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
17006           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[3],"");
17007           sub2node->SetLineColor(kColorITS);
17008           sub2node->SetVisibility(1);
17009           //fNodes->Add(sub2node);
17010           sub1node->cd();        
17011           //
17012           // Place copy #5 of ITS4 directly in I005
17013           //
17014           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
17015           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[4],"");
17016           sub2node->SetLineColor(kColorITS);
17017           sub2node->SetVisibility(1);
17018           //fNodes->Add(sub2node);
17019           sub1node->cd();        
17020           //
17021           // Place copy #6 of ITS4 directly in I005
17022           //
17023           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
17024           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[5],"");
17025           sub2node->SetLineColor(kColorITS);
17026           sub2node->SetVisibility(1);
17027           //fNodes->Add(sub2node);
17028           sub1node->cd();        
17029           //
17030           // Place copy #7 of ITS4 directly in I005
17031           //
17032           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
17033           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[6],"");
17034           sub2node->SetLineColor(kColorITS);
17035           sub2node->SetVisibility(1);
17036           //fNodes->Add(sub2node);
17037           sub1node->cd();        
17038           //
17039           // Place copy #8 of ITS4 directly in I005
17040           //
17041           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
17042           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[7],"");
17043           sub2node->SetLineColor(kColorITS);
17044           sub2node->SetVisibility(1);
17045           //fNodes->Add(sub2node);
17046           sub1node->cd();        
17047        //fNodes->Add(sub1node);
17048        node->cd();       
17049        //
17050        // Place copy #18 of I005 in IT34
17051        //
17052        sub1node = new TNode("I005","I005","I005",23.2005,6.8123,-0.15,"rot317");
17053        sub1node->SetLineColor(kColorITS);
17054        sub1node->SetVisibility(0);
17055        sub1node->cd();
17056           //
17057           // Place copy #1 of ITS4 directly in I005
17058           //
17059           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
17060           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[0],"");
17061           sub2node->SetLineColor(kColorITS);
17062           sub2node->SetVisibility(1);
17063           //fNodes->Add(sub2node);
17064           sub1node->cd();        
17065           //
17066           // Place copy #2 of ITS4 directly in I005
17067           //
17068           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
17069           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[1],"");
17070           sub2node->SetLineColor(kColorITS);
17071           sub2node->SetVisibility(1);
17072           //fNodes->Add(sub2node);
17073           sub1node->cd();        
17074           //
17075           // Place copy #3 of ITS4 directly in I005
17076           //
17077           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
17078           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[2],"");
17079           sub2node->SetLineColor(kColorITS);
17080           sub2node->SetVisibility(1);
17081           //fNodes->Add(sub2node);
17082           sub1node->cd();        
17083           //
17084           // Place copy #4 of ITS4 directly in I005
17085           //
17086           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
17087           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[3],"");
17088           sub2node->SetLineColor(kColorITS);
17089           sub2node->SetVisibility(1);
17090           //fNodes->Add(sub2node);
17091           sub1node->cd();        
17092           //
17093           // Place copy #5 of ITS4 directly in I005
17094           //
17095           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
17096           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[4],"");
17097           sub2node->SetLineColor(kColorITS);
17098           sub2node->SetVisibility(1);
17099           //fNodes->Add(sub2node);
17100           sub1node->cd();        
17101           //
17102           // Place copy #6 of ITS4 directly in I005
17103           //
17104           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
17105           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[5],"");
17106           sub2node->SetLineColor(kColorITS);
17107           sub2node->SetVisibility(1);
17108           //fNodes->Add(sub2node);
17109           sub1node->cd();        
17110           //
17111           // Place copy #7 of ITS4 directly in I005
17112           //
17113           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
17114           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[6],"");
17115           sub2node->SetLineColor(kColorITS);
17116           sub2node->SetVisibility(1);
17117           //fNodes->Add(sub2node);
17118           sub1node->cd();        
17119           //
17120           // Place copy #8 of ITS4 directly in I005
17121           //
17122           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
17123           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[7],"");
17124           sub2node->SetLineColor(kColorITS);
17125           sub2node->SetVisibility(1);
17126           //fNodes->Add(sub2node);
17127           sub1node->cd();        
17128        //fNodes->Add(sub1node);
17129        node->cd();       
17130        //
17131        // Place copy #19 of I005 in IT34
17132        //
17133        sub1node = new TNode("I005","I005","I005",19.8788,12.7753,-0.15,"rot316");
17134        sub1node->SetLineColor(kColorITS);
17135        sub1node->SetVisibility(0);
17136        sub1node->cd();
17137           //
17138           // Place copy #1 of ITS4 directly in I005
17139           //
17140           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
17141           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[0],"");
17142           sub2node->SetLineColor(kColorITS);
17143           sub2node->SetVisibility(1);
17144           //fNodes->Add(sub2node);
17145           sub1node->cd();        
17146           //
17147           // Place copy #2 of ITS4 directly in I005
17148           //
17149           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
17150           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[1],"");
17151           sub2node->SetLineColor(kColorITS);
17152           sub2node->SetVisibility(1);
17153           //fNodes->Add(sub2node);
17154           sub1node->cd();        
17155           //
17156           // Place copy #3 of ITS4 directly in I005
17157           //
17158           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
17159           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[2],"");
17160           sub2node->SetLineColor(kColorITS);
17161           sub2node->SetVisibility(1);
17162           //fNodes->Add(sub2node);
17163           sub1node->cd();        
17164           //
17165           // Place copy #4 of ITS4 directly in I005
17166           //
17167           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
17168           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[3],"");
17169           sub2node->SetLineColor(kColorITS);
17170           sub2node->SetVisibility(1);
17171           //fNodes->Add(sub2node);
17172           sub1node->cd();        
17173           //
17174           // Place copy #5 of ITS4 directly in I005
17175           //
17176           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
17177           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[4],"");
17178           sub2node->SetLineColor(kColorITS);
17179           sub2node->SetVisibility(1);
17180           //fNodes->Add(sub2node);
17181           sub1node->cd();        
17182           //
17183           // Place copy #6 of ITS4 directly in I005
17184           //
17185           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
17186           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[5],"");
17187           sub2node->SetLineColor(kColorITS);
17188           sub2node->SetVisibility(1);
17189           //fNodes->Add(sub2node);
17190           sub1node->cd();        
17191           //
17192           // Place copy #7 of ITS4 directly in I005
17193           //
17194           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
17195           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[6],"");
17196           sub2node->SetLineColor(kColorITS);
17197           sub2node->SetVisibility(1);
17198           //fNodes->Add(sub2node);
17199           sub1node->cd();        
17200           //
17201           // Place copy #8 of ITS4 directly in I005
17202           //
17203           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
17204           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[7],"");
17205           sub2node->SetLineColor(kColorITS);
17206           sub2node->SetVisibility(1);
17207           //fNodes->Add(sub2node);
17208           sub1node->cd();        
17209        //fNodes->Add(sub1node);
17210        node->cd();       
17211        //
17212        // Place copy #20 of I005 in IT34
17213        //
17214        sub1node = new TNode("I005","I005","I005",15.8345,18.274,-0.15,"rot315");
17215        sub1node->SetLineColor(kColorITS);
17216        sub1node->SetVisibility(0);
17217        sub1node->cd();
17218           //
17219           // Place copy #1 of ITS4 directly in I005
17220           //
17221           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
17222           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[0],"");
17223           sub2node->SetLineColor(kColorITS);
17224           sub2node->SetVisibility(1);
17225           //fNodes->Add(sub2node);
17226           sub1node->cd();        
17227           //
17228           // Place copy #2 of ITS4 directly in I005
17229           //
17230           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
17231           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[1],"");
17232           sub2node->SetLineColor(kColorITS);
17233           sub2node->SetVisibility(1);
17234           //fNodes->Add(sub2node);
17235           sub1node->cd();        
17236           //
17237           // Place copy #3 of ITS4 directly in I005
17238           //
17239           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
17240           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[2],"");
17241           sub2node->SetLineColor(kColorITS);
17242           sub2node->SetVisibility(1);
17243           //fNodes->Add(sub2node);
17244           sub1node->cd();        
17245           //
17246           // Place copy #4 of ITS4 directly in I005
17247           //
17248           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
17249           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[3],"");
17250           sub2node->SetLineColor(kColorITS);
17251           sub2node->SetVisibility(1);
17252           //fNodes->Add(sub2node);
17253           sub1node->cd();        
17254           //
17255           // Place copy #5 of ITS4 directly in I005
17256           //
17257           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
17258           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[4],"");
17259           sub2node->SetLineColor(kColorITS);
17260           sub2node->SetVisibility(1);
17261           //fNodes->Add(sub2node);
17262           sub1node->cd();        
17263           //
17264           // Place copy #6 of ITS4 directly in I005
17265           //
17266           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
17267           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[5],"");
17268           sub2node->SetLineColor(kColorITS);
17269           sub2node->SetVisibility(1);
17270           //fNodes->Add(sub2node);
17271           sub1node->cd();        
17272           //
17273           // Place copy #7 of ITS4 directly in I005
17274           //
17275           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
17276           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[6],"");
17277           sub2node->SetLineColor(kColorITS);
17278           sub2node->SetVisibility(1);
17279           //fNodes->Add(sub2node);
17280           sub1node->cd();        
17281           //
17282           // Place copy #8 of ITS4 directly in I005
17283           //
17284           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
17285           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[7],"");
17286           sub2node->SetLineColor(kColorITS);
17287           sub2node->SetVisibility(1);
17288           //fNodes->Add(sub2node);
17289           sub1node->cd();        
17290        //fNodes->Add(sub1node);
17291        node->cd();       
17292        //
17293        // Place copy #21 of I005 in IT34
17294        //
17295        sub1node = new TNode("I005","I005","I005",9.8163,21.4946,-0.15,"rot314");
17296        sub1node->SetLineColor(kColorITS);
17297        sub1node->SetVisibility(0);
17298        sub1node->cd();
17299           //
17300           // Place copy #1 of ITS4 directly in I005
17301           //
17302           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
17303           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[0],"");
17304           sub2node->SetLineColor(kColorITS);
17305           sub2node->SetVisibility(1);
17306           //fNodes->Add(sub2node);
17307           sub1node->cd();        
17308           //
17309           // Place copy #2 of ITS4 directly in I005
17310           //
17311           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
17312           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[1],"");
17313           sub2node->SetLineColor(kColorITS);
17314           sub2node->SetVisibility(1);
17315           //fNodes->Add(sub2node);
17316           sub1node->cd();        
17317           //
17318           // Place copy #3 of ITS4 directly in I005
17319           //
17320           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
17321           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[2],"");
17322           sub2node->SetLineColor(kColorITS);
17323           sub2node->SetVisibility(1);
17324           //fNodes->Add(sub2node);
17325           sub1node->cd();        
17326           //
17327           // Place copy #4 of ITS4 directly in I005
17328           //
17329           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
17330           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[3],"");
17331           sub2node->SetLineColor(kColorITS);
17332           sub2node->SetVisibility(1);
17333           //fNodes->Add(sub2node);
17334           sub1node->cd();        
17335           //
17336           // Place copy #5 of ITS4 directly in I005
17337           //
17338           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
17339           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[4],"");
17340           sub2node->SetLineColor(kColorITS);
17341           sub2node->SetVisibility(1);
17342           //fNodes->Add(sub2node);
17343           sub1node->cd();        
17344           //
17345           // Place copy #6 of ITS4 directly in I005
17346           //
17347           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
17348           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[5],"");
17349           sub2node->SetLineColor(kColorITS);
17350           sub2node->SetVisibility(1);
17351           //fNodes->Add(sub2node);
17352           sub1node->cd();        
17353           //
17354           // Place copy #7 of ITS4 directly in I005
17355           //
17356           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
17357           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[6],"");
17358           sub2node->SetLineColor(kColorITS);
17359           sub2node->SetVisibility(1);
17360           //fNodes->Add(sub2node);
17361           sub1node->cd();        
17362           //
17363           // Place copy #8 of ITS4 directly in I005
17364           //
17365           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
17366           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[7],"");
17367           sub2node->SetLineColor(kColorITS);
17368           sub2node->SetVisibility(1);
17369           //fNodes->Add(sub2node);
17370           sub1node->cd();        
17371        //fNodes->Add(sub1node);
17372        node->cd();       
17373        //
17374        // Place copy #22 of I005 in IT34
17375        //
17376        sub1node = new TNode("I005","I005","I005",3.4412,23.9339,-0.15,"rot334");
17377        sub1node->SetLineColor(kColorITS);
17378        sub1node->SetVisibility(0);
17379        sub1node->cd();
17380           //
17381           // Place copy #1 of ITS4 directly in I005
17382           //
17383           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
17384           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[0],"");
17385           sub2node->SetLineColor(kColorITS);
17386           sub2node->SetVisibility(1);
17387           //fNodes->Add(sub2node);
17388           sub1node->cd();        
17389           //
17390           // Place copy #2 of ITS4 directly in I005
17391           //
17392           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
17393           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[1],"");
17394           sub2node->SetLineColor(kColorITS);
17395           sub2node->SetVisibility(1);
17396           //fNodes->Add(sub2node);
17397           sub1node->cd();        
17398           //
17399           // Place copy #3 of ITS4 directly in I005
17400           //
17401           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
17402           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[2],"");
17403           sub2node->SetLineColor(kColorITS);
17404           sub2node->SetVisibility(1);
17405           //fNodes->Add(sub2node);
17406           sub1node->cd();        
17407           //
17408           // Place copy #4 of ITS4 directly in I005
17409           //
17410           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
17411           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[3],"");
17412           sub2node->SetLineColor(kColorITS);
17413           sub2node->SetVisibility(1);
17414           //fNodes->Add(sub2node);
17415           sub1node->cd();        
17416           //
17417           // Place copy #5 of ITS4 directly in I005
17418           //
17419           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
17420           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[4],"");
17421           sub2node->SetLineColor(kColorITS);
17422           sub2node->SetVisibility(1);
17423           //fNodes->Add(sub2node);
17424           sub1node->cd();        
17425           //
17426           // Place copy #6 of ITS4 directly in I005
17427           //
17428           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
17429           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[5],"");
17430           sub2node->SetLineColor(kColorITS);
17431           sub2node->SetVisibility(1);
17432           //fNodes->Add(sub2node);
17433           sub1node->cd();        
17434           //
17435           // Place copy #7 of ITS4 directly in I005
17436           //
17437           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
17438           sub2node = new TNode("ITS4","ITS4","ITS4",0.,ySDD,Z_SDD_lay4[6],"");
17439           sub2node->SetLineColor(kColorITS);
17440           sub2node->SetVisibility(1);
17441           //fNodes->Add(sub2node);
17442           sub1node->cd();        
17443           //
17444           // Place copy #8 of ITS4 directly in I005
17445           //
17446           ySDD = -(Y_SDD_sep/2.+I402dits[1]);
17447           sub2node = new TNode("ITS4","ITS4","ITS4",0.,-ySDD,Z_SDD_lay4[7],"");
17448           sub2node->SetLineColor(kColorITS);
17449           sub2node->SetVisibility(1);
17450           //fNodes->Add(sub2node);
17451           sub1node->cd();        
17452        //fNodes->Add(sub1node);
17453        node->cd();       
17454        
17455               
17456     //fNodes->Add(node);
17457              
17458     //node->Draw("SAME");
17459     //c1->Update();
17460
17461
17462   // --- Place SPD (option 'a') volumes into their mother volume 
17463   
17464   // SPD - option 'a' 
17465   // (this is NOT the default)
17466
17467   if (option == 1) {
17468
17469
17470   }
17471   
17472   
17473
17474   // --- Place SPD (option 'b') volumes into their mother volume 
17475   
17476   // SPD - option 'b' 
17477   // (this is the default)
17478
17479   if (option == 2) { 
17480   
17481     // Place IT12 in Alice
17482     //
17483     node = new TNode("IT12","IT12","IT12",0.,0.,0.,"");
17484     node->SetLineColor(kColorITS);
17485     node->SetVisibility(0);
17486     node->cd();    
17487        //
17488        // Place copy #1 of I12B in IT12
17489        //
17490        sub1node = new TNode("I12B","I12B","I12B",0.,0.,0.,"");
17491        sub1node->SetLineColor(kColorITS);
17492        sub1node->SetVisibility(0);
17493        sub1node->cd();    
17494           //
17495           // Place copy #1 of I10B in I12B
17496           //
17497           deltax=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Cos(252.*TMath::Pi()/180.);  
17498           deltay=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Sin(252.*TMath::Pi()/180.);
17499           sub2node = new TNode("I10B","I10B","I10B",1.4531+deltax,3.8152+deltay,0.,"rot239");
17500           sub2node->SetLineColor(kColorITS);
17501           sub2node->SetVisibility(0);
17502           sub2node->cd();
17503              //
17504              // Place copy #1 of I107 in I10B
17505              //
17506              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],10.708,"");
17507              sub3node->SetLineColor(kColorITS);
17508              sub3node->SetVisibility(0);
17509              sub3node->cd();
17510                 //
17511                 // Place copy #1 of I101 in I107
17512                 //
17513                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
17514                 sub4node->SetLineColor(kColorITS);
17515                 sub4node->SetVisibility(0);
17516                 sub4node->cd();
17517                    //               
17518                    // Place copy #1 of ITS1 in I101
17519                    //
17520                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
17521                    sub5node->SetLineColor(kColorITS);                   
17522                    //fNodes->Add(sub5node);
17523                    sub4node->cd();   
17524                 //fNodes->Add(sub4node);  
17525              sub3node->cd(); 
17526              //fNodes->Add(sub3node);
17527              sub2node->cd(); 
17528              //
17529              // Place copy #2 of I107 in I10B
17530              //
17531              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],3.536,"");
17532              sub3node->SetLineColor(kColorITS);
17533              sub3node->SetVisibility(0);
17534              sub3node->cd();
17535                 //
17536                 // Place copy #1 of I101 in I107
17537                 //
17538                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
17539                 sub4node->SetLineColor(kColorITS);
17540                 sub4node->SetVisibility(0);
17541                 sub4node->cd();             
17542                    //
17543                    // Place copy #1 of ITS1 in I101
17544                    //
17545                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
17546                    sub5node->SetLineColor(kColorITS);                   
17547                    //fNodes->Add(sub5node);
17548                    sub4node->cd();   
17549                 //fNodes->Add(sub4node);  
17550              sub3node->cd(); 
17551              //fNodes->Add(sub3node);
17552              sub2node->cd(); 
17553              //
17554              // Place copy #3 of I107 in I10B
17555              //
17556              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],-3.536,"");
17557              sub3node->SetLineColor(kColorITS);
17558              sub3node->SetVisibility(0);
17559              sub3node->cd();
17560                 //
17561                 // Place copy #1 of I101 in I107
17562                 //
17563                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
17564                 sub4node->SetLineColor(kColorITS);
17565                 sub4node->SetVisibility(0);
17566                 sub4node->cd();             
17567                    //
17568                    // Place copy #1 of ITS1 in I101
17569                    //
17570                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
17571                    sub5node->SetLineColor(kColorITS);                   
17572                    //fNodes->Add(sub5node);
17573                    sub4node->cd();   
17574                 //fNodes->Add(sub4node);  
17575              sub3node->cd(); 
17576              //fNodes->Add(sub3node);
17577              sub2node->cd(); 
17578              //
17579              // Place copy #4 of I107 in I10B
17580              //
17581              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],-10.708,"");
17582              sub3node->SetLineColor(kColorITS);
17583              sub3node->SetVisibility(0);
17584              sub3node->cd();
17585                 //
17586                 // Place copy #1 of I101 in I107
17587                 //
17588                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
17589                 sub4node->SetLineColor(kColorITS);
17590                 sub4node->SetVisibility(0);
17591                 sub4node->cd();             
17592                    //
17593                    // Place copy #1 of ITS1 in I101
17594                    //
17595                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
17596                    sub5node->SetLineColor(kColorITS);                   
17597                    //fNodes->Add(sub5node);
17598                    sub4node->cd();   
17599                 //fNodes->Add(sub4node);  
17600              sub3node->cd(); 
17601              //fNodes->Add(sub3node);
17602              sub2node->cd(); 
17603           //fNodes->Add(sub2node);      
17604           sub1node->cd(); 
17605           //
17606           // Place copy #2 of I10B in I12B
17607           //
17608           deltax=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Cos(270.*TMath::Pi()/180.);  
17609           deltay=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Sin(270.*TMath::Pi()/180.);
17610           sub2node = new TNode("I10B","I10B","I10B",0.203+deltax,3.8206+deltay,0.,"rot238");
17611           sub2node->SetLineColor(kColorITS);
17612           sub2node->SetVisibility(0);
17613           sub2node->cd();
17614              //
17615              // Place copy #1 of I107 in I10B
17616              //
17617              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],10.708,"");
17618              sub3node->SetLineColor(kColorITS);
17619              sub3node->SetVisibility(0);
17620              sub3node->cd();
17621                 //
17622                 // Place copy #1 of I101 in I107
17623                 //
17624                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
17625                 sub4node->SetLineColor(kColorITS);
17626                 sub4node->SetVisibility(0);
17627                 sub4node->cd();
17628                    //               
17629                    // Place copy #1 of ITS1 in I101
17630                    //
17631                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
17632                    sub5node->SetLineColor(kColorITS);                   
17633                    //fNodes->Add(sub5node);
17634                    sub4node->cd();   
17635                 //fNodes->Add(sub4node);  
17636              sub3node->cd(); 
17637              //fNodes->Add(sub3node);
17638              sub2node->cd(); 
17639              //
17640              // Place copy #2 of I107 in I10B
17641              //
17642              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],3.536,"");
17643              sub3node->SetLineColor(kColorITS);
17644              sub3node->SetVisibility(0);
17645              sub3node->cd();
17646                 //
17647                 // Place copy #1 of I101 in I107
17648                 //
17649                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
17650                 sub4node->SetLineColor(kColorITS);
17651                 sub4node->SetVisibility(0);
17652                 sub4node->cd();             
17653                    //
17654                    // Place copy #1 of ITS1 in I101
17655                    //
17656                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
17657                    sub5node->SetLineColor(kColorITS);                   
17658                    //fNodes->Add(sub5node);
17659                    sub4node->cd();   
17660                 //fNodes->Add(sub4node);  
17661              sub3node->cd(); 
17662              //fNodes->Add(sub3node);
17663              sub2node->cd(); 
17664              //
17665              // Place copy #3 of I107 in I10B
17666              //
17667              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],-3.536,"");
17668              sub3node->SetLineColor(kColorITS);
17669              sub3node->SetVisibility(0);
17670              sub3node->cd();
17671                 //
17672                 // Place copy #1 of I101 in I107
17673                 //
17674                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
17675                 sub4node->SetLineColor(kColorITS);
17676                 sub4node->SetVisibility(0);
17677                 sub4node->cd();             
17678                    //
17679                    // Place copy #1 of ITS1 in I101
17680                    //
17681                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
17682                    sub5node->SetLineColor(kColorITS);                   
17683                    //fNodes->Add(sub5node);
17684                    sub4node->cd();   
17685                 //fNodes->Add(sub4node);  
17686              sub3node->cd(); 
17687              //fNodes->Add(sub3node);
17688              sub2node->cd(); 
17689              //
17690              // Place copy #4 of I107 in I10B
17691              //
17692              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],-10.708,"");
17693              sub3node->SetLineColor(kColorITS);
17694              sub3node->SetVisibility(0);
17695              sub3node->cd();
17696                 //
17697                 // Place copy #1 of I101 in I107
17698                 //
17699                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
17700                 sub4node->SetLineColor(kColorITS);
17701                 sub4node->SetVisibility(0);
17702                 sub4node->cd();             
17703                    //
17704                    // Place copy #1 of ITS1 in I101
17705                    //
17706                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
17707                    sub5node->SetLineColor(kColorITS);                   
17708                    //fNodes->Add(sub5node);
17709                    sub4node->cd();   
17710                 //fNodes->Add(sub4node);  
17711              sub3node->cd(); 
17712              //fNodes->Add(sub3node);
17713              sub2node->cd(); 
17714           //fNodes->Add(sub2node);      
17715           sub1node->cd(); 
17716           //
17717           // Place copy #1 of I20B in I12B
17718           //
17719           deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(40.*TMath::Pi()/180.);  
17720           deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(40.*TMath::Pi()/180.);
17721           sub2node = new TNode("I20B","I20B","I20B",3.0174+deltax,6.5143+deltay,0.,"rot240");
17722           sub2node->SetLineColor(kColorITS);
17723           sub2node->SetVisibility(0);
17724           sub2node->cd();
17725              //
17726              // Place copy #1 of I1D7 in I20B
17727              //
17728              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],10.708,"");
17729              sub3node->SetLineColor(kColorITS);
17730              sub3node->SetVisibility(0);
17731              sub3node->cd();
17732                 //
17733                 // Place copy #1 of I1D1 in I1D7
17734                 //
17735                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
17736                 sub4node->SetLineColor(kColorITS);
17737                 sub4node->SetVisibility(0);
17738                 sub4node->cd();
17739                    //               
17740                    // Place copy #1 of ITS2 in I1D1
17741                    //
17742                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
17743                    sub5node->SetLineColor(kColorITS);                   
17744                    //fNodes->Add(sub5node);
17745                    sub4node->cd();   
17746                 //fNodes->Add(sub4node);  
17747              sub3node->cd(); 
17748              //fNodes->Add(sub3node);
17749              sub2node->cd(); 
17750              //
17751              // Place copy #2 of I1D7 in I20B
17752              //
17753              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],3.536,"");
17754              sub3node->SetLineColor(kColorITS);
17755              sub3node->SetVisibility(0);
17756              sub3node->cd();
17757                 //
17758                 // Place copy #1 of I1D1 in I1D7
17759                 //
17760                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
17761                 sub4node->SetLineColor(kColorITS);
17762                 sub4node->SetVisibility(0);
17763                 sub4node->cd();             
17764                    //
17765                    // Place copy #1 of ITS2 in I1D1
17766                    //
17767                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
17768                    sub5node->SetLineColor(kColorITS);                   
17769                    //fNodes->Add(sub5node);
17770                    sub4node->cd();   
17771                 //fNodes->Add(sub4node);  
17772              sub3node->cd(); 
17773              //fNodes->Add(sub3node);
17774              sub2node->cd(); 
17775              //
17776              // Place copy #3 of I1D7 in I20B
17777              //
17778              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-3.536,"");
17779              sub3node->SetLineColor(kColorITS);
17780              sub3node->SetVisibility(0);
17781              sub3node->cd();
17782                 //
17783                 // Place copy #1 of I1D1 in I1D7
17784                 //
17785                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
17786                 sub4node->SetLineColor(kColorITS);
17787                 sub4node->SetVisibility(0);
17788                 sub4node->cd();             
17789                    //
17790                    // Place copy #1 of ITS2 in I1D1
17791                    //
17792                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
17793                    sub5node->SetLineColor(kColorITS);                   
17794                    //fNodes->Add(sub5node);
17795                    sub4node->cd();   
17796                 //fNodes->Add(sub4node);  
17797              sub3node->cd(); 
17798              //fNodes->Add(sub3node);
17799              sub2node->cd(); 
17800              //
17801              // Place copy #4 of I1D7 in I20B
17802              //
17803              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-10.708,"");
17804              sub3node->SetLineColor(kColorITS);
17805              sub3node->SetVisibility(0);
17806              sub3node->cd();
17807                 //
17808                 // Place copy #1 of I1D1 in I1D7
17809                 //
17810                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
17811                 sub4node->SetLineColor(kColorITS);
17812                 sub4node->SetVisibility(0);
17813                 sub4node->cd();             
17814                    //
17815                    // Place copy #1 of ITS2 in I1D1
17816                    //
17817                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
17818                    sub5node->SetLineColor(kColorITS);                   
17819                    //fNodes->Add(sub5node);
17820                    sub4node->cd();   
17821                 //fNodes->Add(sub4node);  
17822              sub3node->cd(); 
17823              //fNodes->Add(sub3node);
17824              sub2node->cd(); 
17825           //fNodes->Add(sub2node);      
17826           sub1node->cd(); 
17827           //
17828           // Place copy #2 of I20B in I12B
17829           //
17830           deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(49.*TMath::Pi()/180.);  
17831           deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(49.*TMath::Pi()/180.);
17832           sub2node = new TNode("I20B","I20B","I20B",1.9612+deltax,6.9062+deltay,0.,"rot241");
17833           sub2node->SetLineColor(kColorITS);
17834           sub2node->SetVisibility(0);
17835           sub2node->cd();
17836              //
17837              // Place copy #1 of I1D7 in I20B
17838              //
17839              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],10.708,"");
17840              sub3node->SetLineColor(kColorITS);
17841              sub3node->SetVisibility(0);
17842              sub3node->cd();
17843                 //
17844                 // Place copy #1 of I1D1 in I1D7
17845                 //
17846                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
17847                 sub4node->SetLineColor(kColorITS);
17848                 sub4node->SetVisibility(0);
17849                 sub4node->cd();
17850                    //               
17851                    // Place copy #1 of ITS2 in I1D1
17852                    //
17853                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
17854                    sub5node->SetLineColor(kColorITS);                   
17855                    //fNodes->Add(sub5node);
17856                    sub4node->cd();   
17857                 //fNodes->Add(sub4node);  
17858              sub3node->cd(); 
17859              //fNodes->Add(sub3node);
17860              sub2node->cd(); 
17861              //
17862              // Place copy #2 of I1D7 in I20B
17863              //
17864              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],3.536,"");
17865              sub3node->SetLineColor(kColorITS);
17866              sub3node->SetVisibility(0);
17867              sub3node->cd();
17868                 //
17869                 // Place copy #1 of I1D1 in I1D7
17870                 //
17871                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
17872                 sub4node->SetLineColor(kColorITS);
17873                 sub4node->SetVisibility(0);
17874                 sub4node->cd();             
17875                    //
17876                    // Place copy #1 of ITS2 in I1D1
17877                    //
17878                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
17879                    sub5node->SetLineColor(kColorITS);                   
17880                    //fNodes->Add(sub5node);
17881                    sub4node->cd();   
17882                 //fNodes->Add(sub4node);  
17883              sub3node->cd(); 
17884              //fNodes->Add(sub3node);
17885              sub2node->cd(); 
17886              //
17887              // Place copy #3 of I1D7 in I20B
17888              //
17889              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-3.536,"");
17890              sub3node->SetLineColor(kColorITS);
17891              sub3node->SetVisibility(0);
17892              sub3node->cd();
17893                 //
17894                 // Place copy #1 of I1D1 in I1D7
17895                 //
17896                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
17897                 sub4node->SetLineColor(kColorITS);
17898                 sub4node->SetVisibility(0);
17899                 sub4node->cd();             
17900                    //
17901                    // Place copy #1 of ITS2 in I1D1
17902                    //
17903                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
17904                    sub5node->SetLineColor(kColorITS);                   
17905                    //fNodes->Add(sub5node);
17906                    sub4node->cd();   
17907                 //fNodes->Add(sub4node);  
17908              sub3node->cd(); 
17909              //fNodes->Add(sub3node);
17910              sub2node->cd(); 
17911              //
17912              // Place copy #4 of I1D7 in I20B
17913              //
17914              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-10.708,"");
17915              sub3node->SetLineColor(kColorITS);
17916              sub3node->SetVisibility(0);
17917              sub3node->cd();
17918                 //
17919                 // Place copy #1 of I1D1 in I1D7
17920                 //
17921                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
17922                 sub4node->SetLineColor(kColorITS);
17923                 sub4node->SetVisibility(0);
17924                 sub4node->cd();             
17925                    //
17926                    // Place copy #1 of ITS2 in I1D1
17927                    //
17928                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
17929                    sub5node->SetLineColor(kColorITS);                   
17930                    //fNodes->Add(sub5node);
17931                    sub4node->cd();   
17932                 //fNodes->Add(sub4node);  
17933              sub3node->cd(); 
17934              //fNodes->Add(sub3node);
17935              sub2node->cd(); 
17936           //fNodes->Add(sub2node);      
17937           sub1node->cd(); 
17938           //
17939           // Place copy #3 of I20B in I12B
17940           //
17941           deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(58.*TMath::Pi()/180.);  
17942           deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(58.*TMath::Pi()/180.);
17943           sub2node = new TNode("I20B","I20B","I20B",0.8567+deltax,7.1279+deltay,0.,"rot242");
17944           sub2node->SetLineColor(kColorITS);
17945           sub2node->SetVisibility(0);
17946           sub2node->cd();
17947              //
17948              // Place copy #1 of I1D7 in I20B
17949              //
17950              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],10.708,"");
17951              sub3node->SetLineColor(kColorITS);
17952              sub3node->SetVisibility(0);
17953              sub3node->cd();
17954                 //
17955                 // Place copy #1 of I1D1 in I1D7
17956                 //
17957                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
17958                 sub4node->SetLineColor(kColorITS);
17959                 sub4node->SetVisibility(0);
17960                 sub4node->cd();
17961                    //               
17962                    // Place copy #1 of ITS2 in I1D1
17963                    //
17964                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
17965                    sub5node->SetLineColor(kColorITS);                   
17966                    //fNodes->Add(sub5node);
17967                    sub4node->cd();   
17968                 //fNodes->Add(sub4node);  
17969              sub3node->cd(); 
17970              //fNodes->Add(sub3node);
17971              sub2node->cd(); 
17972              //
17973              // Place copy #2 of I1D7 in I20B
17974              //
17975              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],3.536,"");
17976              sub3node->SetLineColor(kColorITS);
17977              sub3node->SetVisibility(0);
17978              sub3node->cd();
17979                 //
17980                 // Place copy #1 of I1D1 in I1D7
17981                 //
17982                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
17983                 sub4node->SetLineColor(kColorITS);
17984                 sub4node->SetVisibility(0);
17985                 sub4node->cd();             
17986                    //
17987                    // Place copy #1 of ITS2 in I1D1
17988                    //
17989                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
17990                    sub5node->SetLineColor(kColorITS);                   
17991                    //fNodes->Add(sub5node);
17992                    sub4node->cd();   
17993                 //fNodes->Add(sub4node);  
17994              sub3node->cd(); 
17995              //fNodes->Add(sub3node);
17996              sub2node->cd(); 
17997              //
17998              // Place copy #3 of I1D7 in I20B
17999              //
18000              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-3.536,"");
18001              sub3node->SetLineColor(kColorITS);
18002              sub3node->SetVisibility(0);
18003              sub3node->cd();
18004                 //
18005                 // Place copy #1 of I1D1 in I1D7
18006                 //
18007                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
18008                 sub4node->SetLineColor(kColorITS);
18009                 sub4node->SetVisibility(0);
18010                 sub4node->cd();             
18011                    //
18012                    // Place copy #1 of ITS2 in I1D1
18013                    //
18014                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
18015                    sub5node->SetLineColor(kColorITS);                   
18016                    //fNodes->Add(sub5node);
18017                    sub4node->cd();   
18018                 //fNodes->Add(sub4node);  
18019              sub3node->cd(); 
18020              //fNodes->Add(sub3node);
18021              sub2node->cd(); 
18022              //
18023              // Place copy #4 of I1D7 in I20B
18024              //
18025              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-10.708,"");
18026              sub3node->SetLineColor(kColorITS);
18027              sub3node->SetVisibility(0);
18028              sub3node->cd();
18029                 //
18030                 // Place copy #1 of I1D1 in I1D7
18031                 //
18032                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
18033                 sub4node->SetLineColor(kColorITS);
18034                 sub4node->SetVisibility(0);
18035                 sub4node->cd();             
18036                    //
18037                    // Place copy #1 of ITS2 in I1D1
18038                    //
18039                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
18040                    sub5node->SetLineColor(kColorITS);                   
18041                    //fNodes->Add(sub5node);
18042                    sub4node->cd();   
18043                 //fNodes->Add(sub4node);  
18044              sub3node->cd(); 
18045              //fNodes->Add(sub3node);
18046              sub2node->cd(); 
18047           //fNodes->Add(sub2node);      
18048           sub1node->cd(); 
18049           //
18050           // Place copy #4 of I20B in I12B
18051           //
18052           deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(67.*TMath::Pi()/180.);  
18053           deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(67.*TMath::Pi()/180.);
18054           sub2node = new TNode("I20B","I20B","I20B",-0.2689+deltax,7.1742+deltay,0.,"rot243");
18055           sub2node->SetLineColor(kColorITS);
18056           sub2node->SetVisibility(0);
18057           sub2node->cd();
18058              //
18059              // Place copy #1 of I1D7 in I20B
18060              //
18061              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],10.708,"");
18062              sub3node->SetLineColor(kColorITS);
18063              sub3node->SetVisibility(0);
18064              sub3node->cd();
18065                 //
18066                 // Place copy #1 of I1D1 in I1D7
18067                 //
18068                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
18069                 sub4node->SetLineColor(kColorITS);
18070                 sub4node->SetVisibility(0);
18071                 sub4node->cd();
18072                    //               
18073                    // Place copy #1 of ITS2 in I1D1
18074                    //
18075                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
18076                    sub5node->SetLineColor(kColorITS);                   
18077                    //fNodes->Add(sub5node);
18078                    sub4node->cd();   
18079                 //fNodes->Add(sub4node);  
18080              sub3node->cd(); 
18081              //fNodes->Add(sub3node);
18082              sub2node->cd(); 
18083              //
18084              // Place copy #2 of I1D7 in I20B
18085              //
18086              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],3.536,"");
18087              sub3node->SetLineColor(kColorITS);
18088              sub3node->SetVisibility(0);
18089              sub3node->cd();
18090                 //
18091                 // Place copy #1 of I1D1 in I1D7
18092                 //
18093                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
18094                 sub4node->SetLineColor(kColorITS);
18095                 sub4node->SetVisibility(0);
18096                 sub4node->cd();             
18097                    //
18098                    // Place copy #1 of ITS2 in I1D1
18099                    //
18100                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
18101                    sub5node->SetLineColor(kColorITS);                   
18102                    //fNodes->Add(sub5node);
18103                    sub4node->cd();   
18104                 //fNodes->Add(sub4node);  
18105              sub3node->cd(); 
18106              //fNodes->Add(sub3node);
18107              sub2node->cd(); 
18108              //
18109              // Place copy #3 of I1D7 in I20B
18110              //
18111              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-3.536,"");
18112              sub3node->SetLineColor(kColorITS);
18113              sub3node->SetVisibility(0);
18114              sub3node->cd();
18115                 //
18116                 // Place copy #1 of I1D1 in I1D7
18117                 //
18118                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
18119                 sub4node->SetLineColor(kColorITS);
18120                 sub4node->SetVisibility(0);
18121                 sub4node->cd();             
18122                    //
18123                    // Place copy #1 of ITS2 in I1D1
18124                    //
18125                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
18126                    sub5node->SetLineColor(kColorITS);                   
18127                    //fNodes->Add(sub5node);
18128                    sub4node->cd();   
18129                 //fNodes->Add(sub4node);  
18130              sub3node->cd(); 
18131              //fNodes->Add(sub3node);
18132              sub2node->cd(); 
18133              //
18134              // Place copy #4 of I1D7 in I20B
18135              //
18136              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-10.708,"");
18137              sub3node->SetLineColor(kColorITS);
18138              sub3node->SetVisibility(0);
18139              sub3node->cd();
18140                 //
18141                 // Place copy #1 of I1D1 in I1D7
18142                 //
18143                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
18144                 sub4node->SetLineColor(kColorITS);
18145                 sub4node->SetVisibility(0);
18146                 sub4node->cd();             
18147                    //
18148                    // Place copy #1 of ITS2 in I1D1
18149                    //
18150                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
18151                    sub5node->SetLineColor(kColorITS);                   
18152                    //fNodes->Add(sub5node);
18153                    sub4node->cd();   
18154                 //fNodes->Add(sub4node);  
18155              sub3node->cd(); 
18156              //fNodes->Add(sub3node);
18157              sub2node->cd(); 
18158           //fNodes->Add(sub2node);      
18159           sub1node->cd(); 
18160        //fNodes->Add(sub1node);
18161        node->cd(); 
18162        //
18163        // Place copy #2 of I12B in IT12
18164        //
18165        sub1node = new TNode("I12B","I12B","I12B",0.,0.,0.,"rot245");
18166        sub1node->SetLineColor(kColorITS);
18167        sub1node->SetVisibility(0);
18168        sub1node->cd();    
18169           //
18170           // Place copy #1 of I10B in I12B
18171           //
18172           deltax=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Cos(252.*TMath::Pi()/180.);  
18173           deltay=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Sin(252.*TMath::Pi()/180.);
18174           sub2node = new TNode("I10B","I10B","I10B",1.4531+deltax,3.8152+deltay,0.,"rot239");
18175           sub2node->SetLineColor(kColorITS);
18176           sub2node->SetVisibility(0);
18177           sub2node->cd();
18178              //
18179              // Place copy #1 of I107 in I10B
18180              //
18181              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],10.708,"");
18182              sub3node->SetLineColor(kColorITS);
18183              sub3node->SetVisibility(0);
18184              sub3node->cd();
18185                 //
18186                 // Place copy #1 of I101 in I107
18187                 //
18188                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
18189                 sub4node->SetLineColor(kColorITS);
18190                 sub4node->SetVisibility(0);
18191                 sub4node->cd();
18192                    //               
18193                    // Place copy #1 of ITS1 in I101
18194                    //
18195                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
18196                    sub5node->SetLineColor(kColorITS);                   
18197                    //fNodes->Add(sub5node);
18198                    sub4node->cd();   
18199                 //fNodes->Add(sub4node);  
18200              sub3node->cd(); 
18201              //fNodes->Add(sub3node);
18202              sub2node->cd(); 
18203              //
18204              // Place copy #2 of I107 in I10B
18205              //
18206              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],3.536,"");
18207              sub3node->SetLineColor(kColorITS);
18208              sub3node->SetVisibility(0);
18209              sub3node->cd();
18210                 //
18211                 // Place copy #1 of I101 in I107
18212                 //
18213                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
18214                 sub4node->SetLineColor(kColorITS);
18215                 sub4node->SetVisibility(0);
18216                 sub4node->cd();             
18217                    //
18218                    // Place copy #1 of ITS1 in I101
18219                    //
18220                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
18221                    sub5node->SetLineColor(kColorITS);                   
18222                    //fNodes->Add(sub5node);
18223                    sub4node->cd();   
18224                 //fNodes->Add(sub4node);  
18225              sub3node->cd(); 
18226              //fNodes->Add(sub3node);
18227              sub2node->cd(); 
18228              //
18229              // Place copy #3 of I107 in I10B
18230              //
18231              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],-3.536,"");
18232              sub3node->SetLineColor(kColorITS);
18233              sub3node->SetVisibility(0);
18234              sub3node->cd();
18235                 //
18236                 // Place copy #1 of I101 in I107
18237                 //
18238                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
18239                 sub4node->SetLineColor(kColorITS);
18240                 sub4node->SetVisibility(0);
18241                 sub4node->cd();             
18242                    //
18243                    // Place copy #1 of ITS1 in I101
18244                    //
18245                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
18246                    sub5node->SetLineColor(kColorITS);                   
18247                    //fNodes->Add(sub5node);
18248                    sub4node->cd();   
18249                 //fNodes->Add(sub4node);  
18250              sub3node->cd(); 
18251              //fNodes->Add(sub3node);
18252              sub2node->cd(); 
18253              //
18254              // Place copy #4 of I107 in I10B
18255              //
18256              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],-10.708,"");
18257              sub3node->SetLineColor(kColorITS);
18258              sub3node->SetVisibility(0);
18259              sub3node->cd();
18260                 //
18261                 // Place copy #1 of I101 in I107
18262                 //
18263                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
18264                 sub4node->SetLineColor(kColorITS);
18265                 sub4node->SetVisibility(0);
18266                 sub4node->cd();             
18267                    //
18268                    // Place copy #1 of ITS1 in I101
18269                    //
18270                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
18271                    sub5node->SetLineColor(kColorITS);                   
18272                    //fNodes->Add(sub5node);
18273                    sub4node->cd();   
18274                 //fNodes->Add(sub4node);  
18275              sub3node->cd(); 
18276              //fNodes->Add(sub3node);
18277              sub2node->cd(); 
18278           //fNodes->Add(sub2node);      
18279           sub1node->cd(); 
18280           //
18281           // Place copy #2 of I10B in I12B
18282           //
18283           deltax=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Cos(270.*TMath::Pi()/180.);  
18284           deltay=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Sin(270.*TMath::Pi()/180.);
18285           sub2node = new TNode("I10B","I10B","I10B",0.203+deltax,3.8206+deltay,0.,"rot238");
18286           sub2node->SetLineColor(kColorITS);
18287           sub2node->SetVisibility(0);
18288           sub2node->cd();
18289              //
18290              // Place copy #1 of I107 in I10B
18291              //
18292              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],10.708,"");
18293              sub3node->SetLineColor(kColorITS);
18294              sub3node->SetVisibility(0);
18295              sub3node->cd();
18296                 //
18297                 // Place copy #1 of I101 in I107
18298                 //
18299                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
18300                 sub4node->SetLineColor(kColorITS);
18301                 sub4node->SetVisibility(0);
18302                 sub4node->cd();
18303                    //               
18304                    // Place copy #1 of ITS1 in I101
18305                    //
18306                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
18307                    sub5node->SetLineColor(kColorITS);                   
18308                    //fNodes->Add(sub5node);
18309                    sub4node->cd();   
18310                 //fNodes->Add(sub4node);  
18311              sub3node->cd(); 
18312              //fNodes->Add(sub3node);
18313              sub2node->cd(); 
18314              //
18315              // Place copy #2 of I107 in I10B
18316              //
18317              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],3.536,"");
18318              sub3node->SetLineColor(kColorITS);
18319              sub3node->SetVisibility(0);
18320              sub3node->cd();
18321                 //
18322                 // Place copy #1 of I101 in I107
18323                 //
18324                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
18325                 sub4node->SetLineColor(kColorITS);
18326                 sub4node->SetVisibility(0);
18327                 sub4node->cd();             
18328                    //
18329                    // Place copy #1 of ITS1 in I101
18330                    //
18331                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
18332                    sub5node->SetLineColor(kColorITS);                   
18333                    //fNodes->Add(sub5node);
18334                    sub4node->cd();   
18335                 //fNodes->Add(sub4node);  
18336              sub3node->cd(); 
18337              //fNodes->Add(sub3node);
18338              sub2node->cd(); 
18339              //
18340              // Place copy #3 of I107 in I10B
18341              //
18342              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],-3.536,"");
18343              sub3node->SetLineColor(kColorITS);
18344              sub3node->SetVisibility(0);
18345              sub3node->cd();
18346                 //
18347                 // Place copy #1 of I101 in I107
18348                 //
18349                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
18350                 sub4node->SetLineColor(kColorITS);
18351                 sub4node->SetVisibility(0);
18352                 sub4node->cd();             
18353                    //
18354                    // Place copy #1 of ITS1 in I101
18355                    //
18356                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
18357                    sub5node->SetLineColor(kColorITS);                   
18358                    //fNodes->Add(sub5node);
18359                    sub4node->cd();   
18360                 //fNodes->Add(sub4node);  
18361              sub3node->cd(); 
18362              //fNodes->Add(sub3node);
18363              sub2node->cd(); 
18364              //
18365              // Place copy #4 of I107 in I10B
18366              //
18367              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],-10.708,"");
18368              sub3node->SetLineColor(kColorITS);
18369              sub3node->SetVisibility(0);
18370              sub3node->cd();
18371                 //
18372                 // Place copy #1 of I101 in I107
18373                 //
18374                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
18375                 sub4node->SetLineColor(kColorITS);
18376                 sub4node->SetVisibility(0);
18377                 sub4node->cd();             
18378                    //
18379                    // Place copy #1 of ITS1 in I101
18380                    //
18381                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
18382                    sub5node->SetLineColor(kColorITS);                   
18383                    //fNodes->Add(sub5node);
18384                    sub4node->cd();   
18385                 //fNodes->Add(sub4node);  
18386              sub3node->cd(); 
18387              //fNodes->Add(sub3node);
18388              sub2node->cd(); 
18389           //fNodes->Add(sub2node);      
18390           sub1node->cd(); 
18391           //
18392           // Place copy #1 of I20B in I12B
18393           //
18394           deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(40.*TMath::Pi()/180.);  
18395           deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(40.*TMath::Pi()/180.);
18396           sub2node = new TNode("I20B","I20B","I20B",3.0174+deltax,6.5143+deltay,0.,"rot240");
18397           sub2node->SetLineColor(kColorITS);
18398           sub2node->SetVisibility(0);
18399           sub2node->cd();
18400              //
18401              // Place copy #1 of I1D7 in I20B
18402              //
18403              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],10.708,"");
18404              sub3node->SetLineColor(kColorITS);
18405              sub3node->SetVisibility(0);
18406              sub3node->cd();
18407                 //
18408                 // Place copy #1 of I1D1 in I1D7
18409                 //
18410                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
18411                 sub4node->SetLineColor(kColorITS);
18412                 sub4node->SetVisibility(0);
18413                 sub4node->cd();
18414                    //               
18415                    // Place copy #1 of ITS2 in I1D1
18416                    //
18417                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
18418                    sub5node->SetLineColor(kColorITS);                   
18419                    //fNodes->Add(sub5node);
18420                    sub4node->cd();   
18421                 //fNodes->Add(sub4node);  
18422              sub3node->cd(); 
18423              //fNodes->Add(sub3node);
18424              sub2node->cd(); 
18425              //
18426              // Place copy #2 of I1D7 in I20B
18427              //
18428              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],3.536,"");
18429              sub3node->SetLineColor(kColorITS);
18430              sub3node->SetVisibility(0);
18431              sub3node->cd();
18432                 //
18433                 // Place copy #1 of I1D1 in I1D7
18434                 //
18435                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
18436                 sub4node->SetLineColor(kColorITS);
18437                 sub4node->SetVisibility(0);
18438                 sub4node->cd();             
18439                    //
18440                    // Place copy #1 of ITS2 in I1D1
18441                    //
18442                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
18443                    sub5node->SetLineColor(kColorITS);                   
18444                    //fNodes->Add(sub5node);
18445                    sub4node->cd();   
18446                 //fNodes->Add(sub4node);  
18447              sub3node->cd(); 
18448              //fNodes->Add(sub3node);
18449              sub2node->cd(); 
18450              //
18451              // Place copy #3 of I1D7 in I20B
18452              //
18453              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-3.536,"");
18454              sub3node->SetLineColor(kColorITS);
18455              sub3node->SetVisibility(0);
18456              sub3node->cd();
18457                 //
18458                 // Place copy #1 of I1D1 in I1D7
18459                 //
18460                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
18461                 sub4node->SetLineColor(kColorITS);
18462                 sub4node->SetVisibility(0);
18463                 sub4node->cd();             
18464                    //
18465                    // Place copy #1 of ITS2 in I1D1
18466                    //
18467                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
18468                    sub5node->SetLineColor(kColorITS);                   
18469                    //fNodes->Add(sub5node);
18470                    sub4node->cd();   
18471                 //fNodes->Add(sub4node);  
18472              sub3node->cd(); 
18473              //fNodes->Add(sub3node);
18474              sub2node->cd(); 
18475              //
18476              // Place copy #4 of I1D7 in I20B
18477              //
18478              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-10.708,"");
18479              sub3node->SetLineColor(kColorITS);
18480              sub3node->SetVisibility(0);
18481              sub3node->cd();
18482                 //
18483                 // Place copy #1 of I1D1 in I1D7
18484                 //
18485                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
18486                 sub4node->SetLineColor(kColorITS);
18487                 sub4node->SetVisibility(0);
18488                 sub4node->cd();             
18489                    //
18490                    // Place copy #1 of ITS2 in I1D1
18491                    //
18492                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
18493                    sub5node->SetLineColor(kColorITS);                   
18494                    //fNodes->Add(sub5node);
18495                    sub4node->cd();   
18496                 //fNodes->Add(sub4node);  
18497              sub3node->cd(); 
18498              //fNodes->Add(sub3node);
18499              sub2node->cd(); 
18500           //fNodes->Add(sub2node);      
18501           sub1node->cd(); 
18502           //
18503           // Place copy #2 of I20B in I12B
18504           //
18505           deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(49.*TMath::Pi()/180.);  
18506           deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(49.*TMath::Pi()/180.);
18507           sub2node = new TNode("I20B","I20B","I20B",1.9612+deltax,6.9062+deltay,0.,"rot241");
18508           sub2node->SetLineColor(kColorITS);
18509           sub2node->SetVisibility(0);
18510           sub2node->cd();
18511              //
18512              // Place copy #1 of I1D7 in I20B
18513              //
18514              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],10.708,"");
18515              sub3node->SetLineColor(kColorITS);
18516              sub3node->SetVisibility(0);
18517              sub3node->cd();
18518                 //
18519                 // Place copy #1 of I1D1 in I1D7
18520                 //
18521                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
18522                 sub4node->SetLineColor(kColorITS);
18523                 sub4node->SetVisibility(0);
18524                 sub4node->cd();
18525                    //               
18526                    // Place copy #1 of ITS2 in I1D1
18527                    //
18528                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
18529                    sub5node->SetLineColor(kColorITS);                   
18530                    //fNodes->Add(sub5node);
18531                    sub4node->cd();   
18532                 //fNodes->Add(sub4node);  
18533              sub3node->cd(); 
18534              //fNodes->Add(sub3node);
18535              sub2node->cd(); 
18536              //
18537              // Place copy #2 of I1D7 in I20B
18538              //
18539              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],3.536,"");
18540              sub3node->SetLineColor(kColorITS);
18541              sub3node->SetVisibility(0);
18542              sub3node->cd();
18543                 //
18544                 // Place copy #1 of I1D1 in I1D7
18545                 //
18546                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
18547                 sub4node->SetLineColor(kColorITS);
18548                 sub4node->SetVisibility(0);
18549                 sub4node->cd();             
18550                    //
18551                    // Place copy #1 of ITS2 in I1D1
18552                    //
18553                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
18554                    sub5node->SetLineColor(kColorITS);                   
18555                    //fNodes->Add(sub5node);
18556                    sub4node->cd();   
18557                 //fNodes->Add(sub4node);  
18558              sub3node->cd(); 
18559              //fNodes->Add(sub3node);
18560              sub2node->cd(); 
18561              //
18562              // Place copy #3 of I1D7 in I20B
18563              //
18564              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-3.536,"");
18565              sub3node->SetLineColor(kColorITS);
18566              sub3node->SetVisibility(0);
18567              sub3node->cd();
18568                 //
18569                 // Place copy #1 of I1D1 in I1D7
18570                 //
18571                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
18572                 sub4node->SetLineColor(kColorITS);
18573                 sub4node->SetVisibility(0);
18574                 sub4node->cd();             
18575                    //
18576                    // Place copy #1 of ITS2 in I1D1
18577                    //
18578                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
18579                    sub5node->SetLineColor(kColorITS);                   
18580                    //fNodes->Add(sub5node);
18581                    sub4node->cd();   
18582                 //fNodes->Add(sub4node);  
18583              sub3node->cd(); 
18584              //fNodes->Add(sub3node);
18585              sub2node->cd(); 
18586              //
18587              // Place copy #4 of I1D7 in I20B
18588              //
18589              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-10.708,"");
18590              sub3node->SetLineColor(kColorITS);
18591              sub3node->SetVisibility(0);
18592              sub3node->cd();
18593                 //
18594                 // Place copy #1 of I1D1 in I1D7
18595                 //
18596                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
18597                 sub4node->SetLineColor(kColorITS);
18598                 sub4node->SetVisibility(0);
18599                 sub4node->cd();             
18600                    //
18601                    // Place copy #1 of ITS2 in I1D1
18602                    //
18603                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
18604                    sub5node->SetLineColor(kColorITS);                   
18605                    //fNodes->Add(sub5node);
18606                    sub4node->cd();   
18607                 //fNodes->Add(sub4node);  
18608              sub3node->cd(); 
18609              //fNodes->Add(sub3node);
18610              sub2node->cd(); 
18611           //fNodes->Add(sub2node);      
18612           sub1node->cd(); 
18613           //
18614           // Place copy #3 of I20B in I12B
18615           //
18616           deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(58.*TMath::Pi()/180.);  
18617           deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(58.*TMath::Pi()/180.);
18618           sub2node = new TNode("I20B","I20B","I20B",0.8567+deltax,7.1279+deltay,0.,"rot242");
18619           sub2node->SetLineColor(kColorITS);
18620           sub2node->SetVisibility(0);
18621           sub2node->cd();
18622              //
18623              // Place copy #1 of I1D7 in I20B
18624              //
18625              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],10.708,"");
18626              sub3node->SetLineColor(kColorITS);
18627              sub3node->SetVisibility(0);
18628              sub3node->cd();
18629                 //
18630                 // Place copy #1 of I1D1 in I1D7
18631                 //
18632                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
18633                 sub4node->SetLineColor(kColorITS);
18634                 sub4node->SetVisibility(0);
18635                 sub4node->cd();
18636                    //               
18637                    // Place copy #1 of ITS2 in I1D1
18638                    //
18639                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
18640                    sub5node->SetLineColor(kColorITS);                   
18641                    //fNodes->Add(sub5node);
18642                    sub4node->cd();   
18643                 //fNodes->Add(sub4node);  
18644              sub3node->cd(); 
18645              //fNodes->Add(sub3node);
18646              sub2node->cd(); 
18647              //
18648              // Place copy #2 of I1D7 in I20B
18649              //
18650              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],3.536,"");
18651              sub3node->SetLineColor(kColorITS);
18652              sub3node->SetVisibility(0);
18653              sub3node->cd();
18654                 //
18655                 // Place copy #1 of I1D1 in I1D7
18656                 //
18657                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
18658                 sub4node->SetLineColor(kColorITS);
18659                 sub4node->SetVisibility(0);
18660                 sub4node->cd();             
18661                    //
18662                    // Place copy #1 of ITS2 in I1D1
18663                    //
18664                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
18665                    sub5node->SetLineColor(kColorITS);                   
18666                    //fNodes->Add(sub5node);
18667                    sub4node->cd();   
18668                 //fNodes->Add(sub4node);  
18669              sub3node->cd(); 
18670              //fNodes->Add(sub3node);
18671              sub2node->cd(); 
18672              //
18673              // Place copy #3 of I1D7 in I20B
18674              //
18675              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-3.536,"");
18676              sub3node->SetLineColor(kColorITS);
18677              sub3node->SetVisibility(0);
18678              sub3node->cd();
18679                 //
18680                 // Place copy #1 of I1D1 in I1D7
18681                 //
18682                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
18683                 sub4node->SetLineColor(kColorITS);
18684                 sub4node->SetVisibility(0);
18685                 sub4node->cd();             
18686                    //
18687                    // Place copy #1 of ITS2 in I1D1
18688                    //
18689                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
18690                    sub5node->SetLineColor(kColorITS);                   
18691                    //fNodes->Add(sub5node);
18692                    sub4node->cd();   
18693                 //fNodes->Add(sub4node);  
18694              sub3node->cd(); 
18695              //fNodes->Add(sub3node);
18696              sub2node->cd(); 
18697              //
18698              // Place copy #4 of I1D7 in I20B
18699              //
18700              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-10.708,"");
18701              sub3node->SetLineColor(kColorITS);
18702              sub3node->SetVisibility(0);
18703              sub3node->cd();
18704                 //
18705                 // Place copy #1 of I1D1 in I1D7
18706                 //
18707                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
18708                 sub4node->SetLineColor(kColorITS);
18709                 sub4node->SetVisibility(0);
18710                 sub4node->cd();             
18711                    //
18712                    // Place copy #1 of ITS2 in I1D1
18713                    //
18714                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
18715                    sub5node->SetLineColor(kColorITS);                   
18716                    //fNodes->Add(sub5node);
18717                    sub4node->cd();   
18718                 //fNodes->Add(sub4node);  
18719              sub3node->cd(); 
18720              //fNodes->Add(sub3node);
18721              sub2node->cd(); 
18722           //fNodes->Add(sub2node);      
18723           sub1node->cd(); 
18724           //
18725           // Place copy #4 of I20B in I12B
18726           //
18727           deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(67.*TMath::Pi()/180.);  
18728           deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(67.*TMath::Pi()/180.);
18729           sub2node = new TNode("I20B","I20B","I20B",-0.2689+deltax,7.1742+deltay,0.,"rot243");
18730           sub2node->SetLineColor(kColorITS);
18731           sub2node->SetVisibility(0);
18732           sub2node->cd();
18733              //
18734              // Place copy #1 of I1D7 in I20B
18735              //
18736              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],10.708,"");
18737              sub3node->SetLineColor(kColorITS);
18738              sub3node->SetVisibility(0);
18739              sub3node->cd();
18740                 //
18741                 // Place copy #1 of I1D1 in I1D7
18742                 //
18743                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
18744                 sub4node->SetLineColor(kColorITS);
18745                 sub4node->SetVisibility(0);
18746                 sub4node->cd();
18747                    //               
18748                    // Place copy #1 of ITS2 in I1D1
18749                    //
18750                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
18751                    sub5node->SetLineColor(kColorITS);                   
18752                    //fNodes->Add(sub5node);
18753                    sub4node->cd();   
18754                 //fNodes->Add(sub4node);  
18755              sub3node->cd(); 
18756              //fNodes->Add(sub3node);
18757              sub2node->cd(); 
18758              //
18759              // Place copy #2 of I1D7 in I20B
18760              //
18761              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],3.536,"");
18762              sub3node->SetLineColor(kColorITS);
18763              sub3node->SetVisibility(0);
18764              sub3node->cd();
18765                 //
18766                 // Place copy #1 of I1D1 in I1D7
18767                 //
18768                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
18769                 sub4node->SetLineColor(kColorITS);
18770                 sub4node->SetVisibility(0);
18771                 sub4node->cd();             
18772                    //
18773                    // Place copy #1 of ITS2 in I1D1
18774                    //
18775                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
18776                    sub5node->SetLineColor(kColorITS);                   
18777                    //fNodes->Add(sub5node);
18778                    sub4node->cd();   
18779                 //fNodes->Add(sub4node);  
18780              sub3node->cd(); 
18781              //fNodes->Add(sub3node);
18782              sub2node->cd(); 
18783              //
18784              // Place copy #3 of I1D7 in I20B
18785              //
18786              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-3.536,"");
18787              sub3node->SetLineColor(kColorITS);
18788              sub3node->SetVisibility(0);
18789              sub3node->cd();
18790                 //
18791                 // Place copy #1 of I1D1 in I1D7
18792                 //
18793                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
18794                 sub4node->SetLineColor(kColorITS);
18795                 sub4node->SetVisibility(0);
18796                 sub4node->cd();             
18797                    //
18798                    // Place copy #1 of ITS2 in I1D1
18799                    //
18800                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
18801                    sub5node->SetLineColor(kColorITS);                   
18802                    //fNodes->Add(sub5node);
18803                    sub4node->cd();   
18804                 //fNodes->Add(sub4node);  
18805              sub3node->cd(); 
18806              //fNodes->Add(sub3node);
18807              sub2node->cd(); 
18808              //
18809              // Place copy #4 of I1D7 in I20B
18810              //
18811              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-10.708,"");
18812              sub3node->SetLineColor(kColorITS);
18813              sub3node->SetVisibility(0);
18814              sub3node->cd();
18815                 //
18816                 // Place copy #1 of I1D1 in I1D7
18817                 //
18818                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
18819                 sub4node->SetLineColor(kColorITS);
18820                 sub4node->SetVisibility(0);
18821                 sub4node->cd();             
18822                    //
18823                    // Place copy #1 of ITS2 in I1D1
18824                    //
18825                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
18826                    sub5node->SetLineColor(kColorITS);                   
18827                    //fNodes->Add(sub5node);
18828                    sub4node->cd();   
18829                 //fNodes->Add(sub4node);  
18830              sub3node->cd(); 
18831              //fNodes->Add(sub3node);
18832              sub2node->cd(); 
18833           //fNodes->Add(sub2node);      
18834           sub1node->cd(); 
18835        //fNodes->Add(sub1node);
18836        node->cd(); 
18837        //
18838        // Place copy #3 of I12B in IT12
18839        //
18840        sub1node = new TNode("I12B","I12B","I12B",0.,0.,0.,"rot234");
18841        sub1node->SetLineColor(kColorITS);
18842        sub1node->SetVisibility(0);
18843        sub1node->cd();    
18844           //
18845           // Place copy #1 of I10B in I12B
18846           //
18847           deltax=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Cos(252.*TMath::Pi()/180.);  
18848           deltay=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Sin(252.*TMath::Pi()/180.);
18849           sub2node = new TNode("I10B","I10B","I10B",1.4531+deltax,3.8152+deltay,0.,"rot239");
18850           sub2node->SetLineColor(kColorITS);
18851           sub2node->SetVisibility(0);
18852           sub2node->cd();
18853              //
18854              // Place copy #1 of I107 in I10B
18855              //
18856              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],10.708,"");
18857              sub3node->SetLineColor(kColorITS);
18858              sub3node->SetVisibility(0);
18859              sub3node->cd();
18860                 //
18861                 // Place copy #1 of I101 in I107
18862                 //
18863                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
18864                 sub4node->SetLineColor(kColorITS);
18865                 sub4node->SetVisibility(0);
18866                 sub4node->cd();
18867                    //               
18868                    // Place copy #1 of ITS1 in I101
18869                    //
18870                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
18871                    sub5node->SetLineColor(kColorITS);                   
18872                    //fNodes->Add(sub5node);
18873                    sub4node->cd();   
18874                 //fNodes->Add(sub4node);  
18875              sub3node->cd(); 
18876              //fNodes->Add(sub3node);
18877              sub2node->cd(); 
18878              //
18879              // Place copy #2 of I107 in I10B
18880              //
18881              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],3.536,"");
18882              sub3node->SetLineColor(kColorITS);
18883              sub3node->SetVisibility(0);
18884              sub3node->cd();
18885                 //
18886                 // Place copy #1 of I101 in I107
18887                 //
18888                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
18889                 sub4node->SetLineColor(kColorITS);
18890                 sub4node->SetVisibility(0);
18891                 sub4node->cd();             
18892                    //
18893                    // Place copy #1 of ITS1 in I101
18894                    //
18895                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
18896                    sub5node->SetLineColor(kColorITS);                   
18897                    //fNodes->Add(sub5node);
18898                    sub4node->cd();   
18899                 //fNodes->Add(sub4node);  
18900              sub3node->cd(); 
18901              //fNodes->Add(sub3node);
18902              sub2node->cd(); 
18903              //
18904              // Place copy #3 of I107 in I10B
18905              //
18906              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],-3.536,"");
18907              sub3node->SetLineColor(kColorITS);
18908              sub3node->SetVisibility(0);
18909              sub3node->cd();
18910                 //
18911                 // Place copy #1 of I101 in I107
18912                 //
18913                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
18914                 sub4node->SetLineColor(kColorITS);
18915                 sub4node->SetVisibility(0);
18916                 sub4node->cd();             
18917                    //
18918                    // Place copy #1 of ITS1 in I101
18919                    //
18920                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
18921                    sub5node->SetLineColor(kColorITS);                   
18922                    //fNodes->Add(sub5node);
18923                    sub4node->cd();   
18924                 //fNodes->Add(sub4node);  
18925              sub3node->cd(); 
18926              //fNodes->Add(sub3node);
18927              sub2node->cd(); 
18928              //
18929              // Place copy #4 of I107 in I10B
18930              //
18931              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],-10.708,"");
18932              sub3node->SetLineColor(kColorITS);
18933              sub3node->SetVisibility(0);
18934              sub3node->cd();
18935                 //
18936                 // Place copy #1 of I101 in I107
18937                 //
18938                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
18939                 sub4node->SetLineColor(kColorITS);
18940                 sub4node->SetVisibility(0);
18941                 sub4node->cd();             
18942                    //
18943                    // Place copy #1 of ITS1 in I101
18944                    //
18945                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
18946                    sub5node->SetLineColor(kColorITS);                   
18947                    //fNodes->Add(sub5node);
18948                    sub4node->cd();   
18949                 //fNodes->Add(sub4node);  
18950              sub3node->cd(); 
18951              //fNodes->Add(sub3node);
18952              sub2node->cd(); 
18953           //fNodes->Add(sub2node);      
18954           sub1node->cd(); 
18955           //
18956           // Place copy #2 of I10B in I12B
18957           //
18958           deltax=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Cos(270.*TMath::Pi()/180.);  
18959           deltay=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Sin(270.*TMath::Pi()/180.);
18960           sub2node = new TNode("I10B","I10B","I10B",0.203+deltax,3.8206+deltay,0.,"rot238");
18961           sub2node->SetLineColor(kColorITS);
18962           sub2node->SetVisibility(0);
18963           sub2node->cd();
18964              //
18965              // Place copy #1 of I107 in I10B
18966              //
18967              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],10.708,"");
18968              sub3node->SetLineColor(kColorITS);
18969              sub3node->SetVisibility(0);
18970              sub3node->cd();
18971                 //
18972                 // Place copy #1 of I101 in I107
18973                 //
18974                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
18975                 sub4node->SetLineColor(kColorITS);
18976                 sub4node->SetVisibility(0);
18977                 sub4node->cd();
18978                    //               
18979                    // Place copy #1 of ITS1 in I101
18980                    //
18981                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
18982                    sub5node->SetLineColor(kColorITS);                   
18983                    //fNodes->Add(sub5node);
18984                    sub4node->cd();   
18985                 //fNodes->Add(sub4node);  
18986              sub3node->cd(); 
18987              //fNodes->Add(sub3node);
18988              sub2node->cd(); 
18989              //
18990              // Place copy #2 of I107 in I10B
18991              //
18992              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],3.536,"");
18993              sub3node->SetLineColor(kColorITS);
18994              sub3node->SetVisibility(0);
18995              sub3node->cd();
18996                 //
18997                 // Place copy #1 of I101 in I107
18998                 //
18999                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
19000                 sub4node->SetLineColor(kColorITS);
19001                 sub4node->SetVisibility(0);
19002                 sub4node->cd();             
19003                    //
19004                    // Place copy #1 of ITS1 in I101
19005                    //
19006                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
19007                    sub5node->SetLineColor(kColorITS);                   
19008                    //fNodes->Add(sub5node);
19009                    sub4node->cd();   
19010                 //fNodes->Add(sub4node);  
19011              sub3node->cd(); 
19012              //fNodes->Add(sub3node);
19013              sub2node->cd(); 
19014              //
19015              // Place copy #3 of I107 in I10B
19016              //
19017              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],-3.536,"");
19018              sub3node->SetLineColor(kColorITS);
19019              sub3node->SetVisibility(0);
19020              sub3node->cd();
19021                 //
19022                 // Place copy #1 of I101 in I107
19023                 //
19024                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
19025                 sub4node->SetLineColor(kColorITS);
19026                 sub4node->SetVisibility(0);
19027                 sub4node->cd();             
19028                    //
19029                    // Place copy #1 of ITS1 in I101
19030                    //
19031                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
19032                    sub5node->SetLineColor(kColorITS);                   
19033                    //fNodes->Add(sub5node);
19034                    sub4node->cd();   
19035                 //fNodes->Add(sub4node);  
19036              sub3node->cd(); 
19037              //fNodes->Add(sub3node);
19038              sub2node->cd(); 
19039              //
19040              // Place copy #4 of I107 in I10B
19041              //
19042              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],-10.708,"");
19043              sub3node->SetLineColor(kColorITS);
19044              sub3node->SetVisibility(0);
19045              sub3node->cd();
19046                 //
19047                 // Place copy #1 of I101 in I107
19048                 //
19049                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
19050                 sub4node->SetLineColor(kColorITS);
19051                 sub4node->SetVisibility(0);
19052                 sub4node->cd();             
19053                    //
19054                    // Place copy #1 of ITS1 in I101
19055                    //
19056                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
19057                    sub5node->SetLineColor(kColorITS);                   
19058                    //fNodes->Add(sub5node);
19059                    sub4node->cd();   
19060                 //fNodes->Add(sub4node);  
19061              sub3node->cd(); 
19062              //fNodes->Add(sub3node);
19063              sub2node->cd(); 
19064           //fNodes->Add(sub2node);      
19065           sub1node->cd(); 
19066           //
19067           // Place copy #1 of I20B in I12B
19068           //
19069           deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(40.*TMath::Pi()/180.);  
19070           deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(40.*TMath::Pi()/180.);
19071           sub2node = new TNode("I20B","I20B","I20B",3.0174+deltax,6.5143+deltay,0.,"rot240");
19072           sub2node->SetLineColor(kColorITS);
19073           sub2node->SetVisibility(0);
19074           sub2node->cd();
19075              //
19076              // Place copy #1 of I1D7 in I20B
19077              //
19078              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],10.708,"");
19079              sub3node->SetLineColor(kColorITS);
19080              sub3node->SetVisibility(0);
19081              sub3node->cd();
19082                 //
19083                 // Place copy #1 of I1D1 in I1D7
19084                 //
19085                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
19086                 sub4node->SetLineColor(kColorITS);
19087                 sub4node->SetVisibility(0);
19088                 sub4node->cd();
19089                    //               
19090                    // Place copy #1 of ITS2 in I1D1
19091                    //
19092                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
19093                    sub5node->SetLineColor(kColorITS);                   
19094                    //fNodes->Add(sub5node);
19095                    sub4node->cd();   
19096                 //fNodes->Add(sub4node);  
19097              sub3node->cd(); 
19098              //fNodes->Add(sub3node);
19099              sub2node->cd(); 
19100              //
19101              // Place copy #2 of I1D7 in I20B
19102              //
19103              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],3.536,"");
19104              sub3node->SetLineColor(kColorITS);
19105              sub3node->SetVisibility(0);
19106              sub3node->cd();
19107                 //
19108                 // Place copy #1 of I1D1 in I1D7
19109                 //
19110                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
19111                 sub4node->SetLineColor(kColorITS);
19112                 sub4node->SetVisibility(0);
19113                 sub4node->cd();             
19114                    //
19115                    // Place copy #1 of ITS2 in I1D1
19116                    //
19117                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
19118                    sub5node->SetLineColor(kColorITS);                   
19119                    //fNodes->Add(sub5node);
19120                    sub4node->cd();   
19121                 //fNodes->Add(sub4node);  
19122              sub3node->cd(); 
19123              //fNodes->Add(sub3node);
19124              sub2node->cd(); 
19125              //
19126              // Place copy #3 of I1D7 in I20B
19127              //
19128              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-3.536,"");
19129              sub3node->SetLineColor(kColorITS);
19130              sub3node->SetVisibility(0);
19131              sub3node->cd();
19132                 //
19133                 // Place copy #1 of I1D1 in I1D7
19134                 //
19135                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
19136                 sub4node->SetLineColor(kColorITS);
19137                 sub4node->SetVisibility(0);
19138                 sub4node->cd();             
19139                    //
19140                    // Place copy #1 of ITS2 in I1D1
19141                    //
19142                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
19143                    sub5node->SetLineColor(kColorITS);                   
19144                    //fNodes->Add(sub5node);
19145                    sub4node->cd();   
19146                 //fNodes->Add(sub4node);  
19147              sub3node->cd(); 
19148              //fNodes->Add(sub3node);
19149              sub2node->cd(); 
19150              //
19151              // Place copy #4 of I1D7 in I20B
19152              //
19153              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-10.708,"");
19154              sub3node->SetLineColor(kColorITS);
19155              sub3node->SetVisibility(0);
19156              sub3node->cd();
19157                 //
19158                 // Place copy #1 of I1D1 in I1D7
19159                 //
19160                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
19161                 sub4node->SetLineColor(kColorITS);
19162                 sub4node->SetVisibility(0);
19163                 sub4node->cd();             
19164                    //
19165                    // Place copy #1 of ITS2 in I1D1
19166                    //
19167                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
19168                    sub5node->SetLineColor(kColorITS);                   
19169                    //fNodes->Add(sub5node);
19170                    sub4node->cd();   
19171                 //fNodes->Add(sub4node);  
19172              sub3node->cd(); 
19173              //fNodes->Add(sub3node);
19174              sub2node->cd(); 
19175           //fNodes->Add(sub2node);      
19176           sub1node->cd(); 
19177           //
19178           // Place copy #2 of I20B in I12B
19179           //
19180           deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(49.*TMath::Pi()/180.);  
19181           deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(49.*TMath::Pi()/180.);
19182           sub2node = new TNode("I20B","I20B","I20B",1.9612+deltax,6.9062+deltay,0.,"rot241");
19183           sub2node->SetLineColor(kColorITS);
19184           sub2node->SetVisibility(0);
19185           sub2node->cd();
19186              //
19187              // Place copy #1 of I1D7 in I20B
19188              //
19189              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],10.708,"");
19190              sub3node->SetLineColor(kColorITS);
19191              sub3node->SetVisibility(0);
19192              sub3node->cd();
19193                 //
19194                 // Place copy #1 of I1D1 in I1D7
19195                 //
19196                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
19197                 sub4node->SetLineColor(kColorITS);
19198                 sub4node->SetVisibility(0);
19199                 sub4node->cd();
19200                    //               
19201                    // Place copy #1 of ITS2 in I1D1
19202                    //
19203                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
19204                    sub5node->SetLineColor(kColorITS);                   
19205                    //fNodes->Add(sub5node);
19206                    sub4node->cd();   
19207                 //fNodes->Add(sub4node);  
19208              sub3node->cd(); 
19209              //fNodes->Add(sub3node);
19210              sub2node->cd(); 
19211              //
19212              // Place copy #2 of I1D7 in I20B
19213              //
19214              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],3.536,"");
19215              sub3node->SetLineColor(kColorITS);
19216              sub3node->SetVisibility(0);
19217              sub3node->cd();
19218                 //
19219                 // Place copy #1 of I1D1 in I1D7
19220                 //
19221                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
19222                 sub4node->SetLineColor(kColorITS);
19223                 sub4node->SetVisibility(0);
19224                 sub4node->cd();             
19225                    //
19226                    // Place copy #1 of ITS2 in I1D1
19227                    //
19228                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
19229                    sub5node->SetLineColor(kColorITS);                   
19230                    //fNodes->Add(sub5node);
19231                    sub4node->cd();   
19232                 //fNodes->Add(sub4node);  
19233              sub3node->cd(); 
19234              //fNodes->Add(sub3node);
19235              sub2node->cd(); 
19236              //
19237              // Place copy #3 of I1D7 in I20B
19238              //
19239              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-3.536,"");
19240              sub3node->SetLineColor(kColorITS);
19241              sub3node->SetVisibility(0);
19242              sub3node->cd();
19243                 //
19244                 // Place copy #1 of I1D1 in I1D7
19245                 //
19246                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
19247                 sub4node->SetLineColor(kColorITS);
19248                 sub4node->SetVisibility(0);
19249                 sub4node->cd();             
19250                    //
19251                    // Place copy #1 of ITS2 in I1D1
19252                    //
19253                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
19254                    sub5node->SetLineColor(kColorITS);                   
19255                    //fNodes->Add(sub5node);
19256                    sub4node->cd();   
19257                 //fNodes->Add(sub4node);  
19258              sub3node->cd(); 
19259              //fNodes->Add(sub3node);
19260              sub2node->cd(); 
19261              //
19262              // Place copy #4 of I1D7 in I20B
19263              //
19264              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-10.708,"");
19265              sub3node->SetLineColor(kColorITS);
19266              sub3node->SetVisibility(0);
19267              sub3node->cd();
19268                 //
19269                 // Place copy #1 of I1D1 in I1D7
19270                 //
19271                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
19272                 sub4node->SetLineColor(kColorITS);
19273                 sub4node->SetVisibility(0);
19274                 sub4node->cd();             
19275                    //
19276                    // Place copy #1 of ITS2 in I1D1
19277                    //
19278                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
19279                    sub5node->SetLineColor(kColorITS);                   
19280                    //fNodes->Add(sub5node);
19281                    sub4node->cd();   
19282                 //fNodes->Add(sub4node);  
19283              sub3node->cd(); 
19284              //fNodes->Add(sub3node);
19285              sub2node->cd(); 
19286           //fNodes->Add(sub2node);      
19287           sub1node->cd(); 
19288           //
19289           // Place copy #3 of I20B in I12B
19290           //
19291           deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(58.*TMath::Pi()/180.);  
19292           deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(58.*TMath::Pi()/180.);
19293           sub2node = new TNode("I20B","I20B","I20B",0.8567+deltax,7.1279+deltay,0.,"rot242");
19294           sub2node->SetLineColor(kColorITS);
19295           sub2node->SetVisibility(0);
19296           sub2node->cd();
19297              //
19298              // Place copy #1 of I1D7 in I20B
19299              //
19300              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],10.708,"");
19301              sub3node->SetLineColor(kColorITS);
19302              sub3node->SetVisibility(0);
19303              sub3node->cd();
19304                 //
19305                 // Place copy #1 of I1D1 in I1D7
19306                 //
19307                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
19308                 sub4node->SetLineColor(kColorITS);
19309                 sub4node->SetVisibility(0);
19310                 sub4node->cd();
19311                    //               
19312                    // Place copy #1 of ITS2 in I1D1
19313                    //
19314                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
19315                    sub5node->SetLineColor(kColorITS);                   
19316                    //fNodes->Add(sub5node);
19317                    sub4node->cd();   
19318                 //fNodes->Add(sub4node);  
19319              sub3node->cd(); 
19320              //fNodes->Add(sub3node);
19321              sub2node->cd(); 
19322              //
19323              // Place copy #2 of I1D7 in I20B
19324              //
19325              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],3.536,"");
19326              sub3node->SetLineColor(kColorITS);
19327              sub3node->SetVisibility(0);
19328              sub3node->cd();
19329                 //
19330                 // Place copy #1 of I1D1 in I1D7
19331                 //
19332                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
19333                 sub4node->SetLineColor(kColorITS);
19334                 sub4node->SetVisibility(0);
19335                 sub4node->cd();             
19336                    //
19337                    // Place copy #1 of ITS2 in I1D1
19338                    //
19339                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
19340                    sub5node->SetLineColor(kColorITS);                   
19341                    //fNodes->Add(sub5node);
19342                    sub4node->cd();   
19343                 //fNodes->Add(sub4node);  
19344              sub3node->cd(); 
19345              //fNodes->Add(sub3node);
19346              sub2node->cd(); 
19347              //
19348              // Place copy #3 of I1D7 in I20B
19349              //
19350              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-3.536,"");
19351              sub3node->SetLineColor(kColorITS);
19352              sub3node->SetVisibility(0);
19353              sub3node->cd();
19354                 //
19355                 // Place copy #1 of I1D1 in I1D7
19356                 //
19357                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
19358                 sub4node->SetLineColor(kColorITS);
19359                 sub4node->SetVisibility(0);
19360                 sub4node->cd();             
19361                    //
19362                    // Place copy #1 of ITS2 in I1D1
19363                    //
19364                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
19365                    sub5node->SetLineColor(kColorITS);                   
19366                    //fNodes->Add(sub5node);
19367                    sub4node->cd();   
19368                 //fNodes->Add(sub4node);  
19369              sub3node->cd(); 
19370              //fNodes->Add(sub3node);
19371              sub2node->cd(); 
19372              //
19373              // Place copy #4 of I1D7 in I20B
19374              //
19375              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-10.708,"");
19376              sub3node->SetLineColor(kColorITS);
19377              sub3node->SetVisibility(0);
19378              sub3node->cd();
19379                 //
19380                 // Place copy #1 of I1D1 in I1D7
19381                 //
19382                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
19383                 sub4node->SetLineColor(kColorITS);
19384                 sub4node->SetVisibility(0);
19385                 sub4node->cd();             
19386                    //
19387                    // Place copy #1 of ITS2 in I1D1
19388                    //
19389                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
19390                    sub5node->SetLineColor(kColorITS);                   
19391                    //fNodes->Add(sub5node);
19392                    sub4node->cd();   
19393                 //fNodes->Add(sub4node);  
19394              sub3node->cd(); 
19395              //fNodes->Add(sub3node);
19396              sub2node->cd(); 
19397           //fNodes->Add(sub2node);      
19398           sub1node->cd(); 
19399           //
19400           // Place copy #4 of I20B in I12B
19401           //
19402           deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(67.*TMath::Pi()/180.);  
19403           deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(67.*TMath::Pi()/180.);
19404           sub2node = new TNode("I20B","I20B","I20B",-0.2689+deltax,7.1742+deltay,0.,"rot243");
19405           sub2node->SetLineColor(kColorITS);
19406           sub2node->SetVisibility(0);
19407           sub2node->cd();
19408              //
19409              // Place copy #1 of I1D7 in I20B
19410              //
19411              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],10.708,"");
19412              sub3node->SetLineColor(kColorITS);
19413              sub3node->SetVisibility(0);
19414              sub3node->cd();
19415                 //
19416                 // Place copy #1 of I1D1 in I1D7
19417                 //
19418                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
19419                 sub4node->SetLineColor(kColorITS);
19420                 sub4node->SetVisibility(0);
19421                 sub4node->cd();
19422                    //               
19423                    // Place copy #1 of ITS2 in I1D1
19424                    //
19425                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
19426                    sub5node->SetLineColor(kColorITS);                   
19427                    //fNodes->Add(sub5node);
19428                    sub4node->cd();   
19429                 //fNodes->Add(sub4node);  
19430              sub3node->cd(); 
19431              //fNodes->Add(sub3node);
19432              sub2node->cd(); 
19433              //
19434              // Place copy #2 of I1D7 in I20B
19435              //
19436              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],3.536,"");
19437              sub3node->SetLineColor(kColorITS);
19438              sub3node->SetVisibility(0);
19439              sub3node->cd();
19440                 //
19441                 // Place copy #1 of I1D1 in I1D7
19442                 //
19443                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
19444                 sub4node->SetLineColor(kColorITS);
19445                 sub4node->SetVisibility(0);
19446                 sub4node->cd();             
19447                    //
19448                    // Place copy #1 of ITS2 in I1D1
19449                    //
19450                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
19451                    sub5node->SetLineColor(kColorITS);                   
19452                    //fNodes->Add(sub5node);
19453                    sub4node->cd();   
19454                 //fNodes->Add(sub4node);  
19455              sub3node->cd(); 
19456              //fNodes->Add(sub3node);
19457              sub2node->cd(); 
19458              //
19459              // Place copy #3 of I1D7 in I20B
19460              //
19461              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-3.536,"");
19462              sub3node->SetLineColor(kColorITS);
19463              sub3node->SetVisibility(0);
19464              sub3node->cd();
19465                 //
19466                 // Place copy #1 of I1D1 in I1D7
19467                 //
19468                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
19469                 sub4node->SetLineColor(kColorITS);
19470                 sub4node->SetVisibility(0);
19471                 sub4node->cd();             
19472                    //
19473                    // Place copy #1 of ITS2 in I1D1
19474                    //
19475                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
19476                    sub5node->SetLineColor(kColorITS);                   
19477                    //fNodes->Add(sub5node);
19478                    sub4node->cd();   
19479                 //fNodes->Add(sub4node);  
19480              sub3node->cd(); 
19481              //fNodes->Add(sub3node);
19482              sub2node->cd(); 
19483              //
19484              // Place copy #4 of I1D7 in I20B
19485              //
19486              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-10.708,"");
19487              sub3node->SetLineColor(kColorITS);
19488              sub3node->SetVisibility(0);
19489              sub3node->cd();
19490                 //
19491                 // Place copy #1 of I1D1 in I1D7
19492                 //
19493                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
19494                 sub4node->SetLineColor(kColorITS);
19495                 sub4node->SetVisibility(0);
19496                 sub4node->cd();             
19497                    //
19498                    // Place copy #1 of ITS2 in I1D1
19499                    //
19500                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
19501                    sub5node->SetLineColor(kColorITS);                   
19502                    //fNodes->Add(sub5node);
19503                    sub4node->cd();   
19504                 //fNodes->Add(sub4node);  
19505              sub3node->cd(); 
19506              //fNodes->Add(sub3node);
19507              sub2node->cd(); 
19508           //fNodes->Add(sub2node);      
19509           sub1node->cd(); 
19510        //fNodes->Add(sub1node);
19511        node->cd(); 
19512        //
19513        // Place copy #4 of I12B in IT12
19514        //
19515        sub1node = new TNode("I12B","I12B","I12B",0.,0.,0.,"rot246");
19516        sub1node->SetLineColor(kColorITS);
19517        sub1node->SetVisibility(0);
19518        sub1node->cd();    
19519           //
19520           // Place copy #1 of I10B in I12B
19521           //
19522           deltax=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Cos(252.*TMath::Pi()/180.);  
19523           deltay=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Sin(252.*TMath::Pi()/180.);
19524           sub2node = new TNode("I10B","I10B","I10B",1.4531+deltax,3.8152+deltay,0.,"rot239");
19525           sub2node->SetLineColor(kColorITS);
19526           sub2node->SetVisibility(0);
19527           sub2node->cd();
19528              //
19529              // Place copy #1 of I107 in I10B
19530              //
19531              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],10.708,"");
19532              sub3node->SetLineColor(kColorITS);
19533              sub3node->SetVisibility(0);
19534              sub3node->cd();
19535                 //
19536                 // Place copy #1 of I101 in I107
19537                 //
19538                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
19539                 sub4node->SetLineColor(kColorITS);
19540                 sub4node->SetVisibility(0);
19541                 sub4node->cd();
19542                    //               
19543                    // Place copy #1 of ITS1 in I101
19544                    //
19545                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
19546                    sub5node->SetLineColor(kColorITS);                   
19547                    //fNodes->Add(sub5node);
19548                    sub4node->cd();   
19549                 //fNodes->Add(sub4node);  
19550              sub3node->cd(); 
19551              //fNodes->Add(sub3node);
19552              sub2node->cd(); 
19553              //
19554              // Place copy #2 of I107 in I10B
19555              //
19556              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],3.536,"");
19557              sub3node->SetLineColor(kColorITS);
19558              sub3node->SetVisibility(0);
19559              sub3node->cd();
19560                 //
19561                 // Place copy #1 of I101 in I107
19562                 //
19563                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
19564                 sub4node->SetLineColor(kColorITS);
19565                 sub4node->SetVisibility(0);
19566                 sub4node->cd();             
19567                    //
19568                    // Place copy #1 of ITS1 in I101
19569                    //
19570                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
19571                    sub5node->SetLineColor(kColorITS);                   
19572                    //fNodes->Add(sub5node);
19573                    sub4node->cd();   
19574                 //fNodes->Add(sub4node);  
19575              sub3node->cd(); 
19576              //fNodes->Add(sub3node);
19577              sub2node->cd(); 
19578              //
19579              // Place copy #3 of I107 in I10B
19580              //
19581              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],-3.536,"");
19582              sub3node->SetLineColor(kColorITS);
19583              sub3node->SetVisibility(0);
19584              sub3node->cd();
19585                 //
19586                 // Place copy #1 of I101 in I107
19587                 //
19588                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
19589                 sub4node->SetLineColor(kColorITS);
19590                 sub4node->SetVisibility(0);
19591                 sub4node->cd();             
19592                    //
19593                    // Place copy #1 of ITS1 in I101
19594                    //
19595                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
19596                    sub5node->SetLineColor(kColorITS);                   
19597                    //fNodes->Add(sub5node);
19598                    sub4node->cd();   
19599                 //fNodes->Add(sub4node);  
19600              sub3node->cd(); 
19601              //fNodes->Add(sub3node);
19602              sub2node->cd(); 
19603              //
19604              // Place copy #4 of I107 in I10B
19605              //
19606              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],-10.708,"");
19607              sub3node->SetLineColor(kColorITS);
19608              sub3node->SetVisibility(0);
19609              sub3node->cd();
19610                 //
19611                 // Place copy #1 of I101 in I107
19612                 //
19613                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
19614                 sub4node->SetLineColor(kColorITS);
19615                 sub4node->SetVisibility(0);
19616                 sub4node->cd();             
19617                    //
19618                    // Place copy #1 of ITS1 in I101
19619                    //
19620                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
19621                    sub5node->SetLineColor(kColorITS);                   
19622                    //fNodes->Add(sub5node);
19623                    sub4node->cd();   
19624                 //fNodes->Add(sub4node);  
19625              sub3node->cd(); 
19626              //fNodes->Add(sub3node);
19627              sub2node->cd(); 
19628           //fNodes->Add(sub2node);      
19629           sub1node->cd(); 
19630           //
19631           // Place copy #2 of I10B in I12B
19632           //
19633           deltax=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Cos(270.*TMath::Pi()/180.);  
19634           deltay=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Sin(270.*TMath::Pi()/180.);
19635           sub2node = new TNode("I10B","I10B","I10B",0.203+deltax,3.8206+deltay,0.,"rot238");
19636           sub2node->SetLineColor(kColorITS);
19637           sub2node->SetVisibility(0);
19638           sub2node->cd();
19639              //
19640              // Place copy #1 of I107 in I10B
19641              //
19642              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],10.708,"");
19643              sub3node->SetLineColor(kColorITS);
19644              sub3node->SetVisibility(0);
19645              sub3node->cd();
19646                 //
19647                 // Place copy #1 of I101 in I107
19648                 //
19649                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
19650                 sub4node->SetLineColor(kColorITS);
19651                 sub4node->SetVisibility(0);
19652                 sub4node->cd();
19653                    //               
19654                    // Place copy #1 of ITS1 in I101
19655                    //
19656                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
19657                    sub5node->SetLineColor(kColorITS);                   
19658                    //fNodes->Add(sub5node);
19659                    sub4node->cd();   
19660                 //fNodes->Add(sub4node);  
19661              sub3node->cd(); 
19662              //fNodes->Add(sub3node);
19663              sub2node->cd(); 
19664              //
19665              // Place copy #2 of I107 in I10B
19666              //
19667              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],3.536,"");
19668              sub3node->SetLineColor(kColorITS);
19669              sub3node->SetVisibility(0);
19670              sub3node->cd();
19671                 //
19672                 // Place copy #1 of I101 in I107
19673                 //
19674                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
19675                 sub4node->SetLineColor(kColorITS);
19676                 sub4node->SetVisibility(0);
19677                 sub4node->cd();             
19678                    //
19679                    // Place copy #1 of ITS1 in I101
19680                    //
19681                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
19682                    sub5node->SetLineColor(kColorITS);                   
19683                    //fNodes->Add(sub5node);
19684                    sub4node->cd();   
19685                 //fNodes->Add(sub4node);  
19686              sub3node->cd(); 
19687              //fNodes->Add(sub3node);
19688              sub2node->cd(); 
19689              //
19690              // Place copy #3 of I107 in I10B
19691              //
19692              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],-3.536,"");
19693              sub3node->SetLineColor(kColorITS);
19694              sub3node->SetVisibility(0);
19695              sub3node->cd();
19696                 //
19697                 // Place copy #1 of I101 in I107
19698                 //
19699                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
19700                 sub4node->SetLineColor(kColorITS);
19701                 sub4node->SetVisibility(0);
19702                 sub4node->cd();             
19703                    //
19704                    // Place copy #1 of ITS1 in I101
19705                    //
19706                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
19707                    sub5node->SetLineColor(kColorITS);                   
19708                    //fNodes->Add(sub5node);
19709                    sub4node->cd();   
19710                 //fNodes->Add(sub4node);  
19711              sub3node->cd(); 
19712              //fNodes->Add(sub3node);
19713              sub2node->cd(); 
19714              //
19715              // Place copy #4 of I107 in I10B
19716              //
19717              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],-10.708,"");
19718              sub3node->SetLineColor(kColorITS);
19719              sub3node->SetVisibility(0);
19720              sub3node->cd();
19721                 //
19722                 // Place copy #1 of I101 in I107
19723                 //
19724                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
19725                 sub4node->SetLineColor(kColorITS);
19726                 sub4node->SetVisibility(0);
19727                 sub4node->cd();             
19728                    //
19729                    // Place copy #1 of ITS1 in I101
19730                    //
19731                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
19732                    sub5node->SetLineColor(kColorITS);                   
19733                    //fNodes->Add(sub5node);
19734                    sub4node->cd();   
19735                 //fNodes->Add(sub4node);  
19736              sub3node->cd(); 
19737              //fNodes->Add(sub3node);
19738              sub2node->cd(); 
19739           //fNodes->Add(sub2node);      
19740           sub1node->cd(); 
19741           //
19742           // Place copy #1 of I20B in I12B
19743           //
19744           deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(40.*TMath::Pi()/180.);  
19745           deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(40.*TMath::Pi()/180.);
19746           sub2node = new TNode("I20B","I20B","I20B",3.0174+deltax,6.5143+deltay,0.,"rot240");
19747           sub2node->SetLineColor(kColorITS);
19748           sub2node->SetVisibility(0);
19749           sub2node->cd();
19750              //
19751              // Place copy #1 of I1D7 in I20B
19752              //
19753              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],10.708,"");
19754              sub3node->SetLineColor(kColorITS);
19755              sub3node->SetVisibility(0);
19756              sub3node->cd();
19757                 //
19758                 // Place copy #1 of I1D1 in I1D7
19759                 //
19760                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
19761                 sub4node->SetLineColor(kColorITS);
19762                 sub4node->SetVisibility(0);
19763                 sub4node->cd();
19764                    //               
19765                    // Place copy #1 of ITS2 in I1D1
19766                    //
19767                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
19768                    sub5node->SetLineColor(kColorITS);                   
19769                    //fNodes->Add(sub5node);
19770                    sub4node->cd();   
19771                 //fNodes->Add(sub4node);  
19772              sub3node->cd(); 
19773              //fNodes->Add(sub3node);
19774              sub2node->cd(); 
19775              //
19776              // Place copy #2 of I1D7 in I20B
19777              //
19778              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],3.536,"");
19779              sub3node->SetLineColor(kColorITS);
19780              sub3node->SetVisibility(0);
19781              sub3node->cd();
19782                 //
19783                 // Place copy #1 of I1D1 in I1D7
19784                 //
19785                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
19786                 sub4node->SetLineColor(kColorITS);
19787                 sub4node->SetVisibility(0);
19788                 sub4node->cd();             
19789                    //
19790                    // Place copy #1 of ITS2 in I1D1
19791                    //
19792                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
19793                    sub5node->SetLineColor(kColorITS);                   
19794                    //fNodes->Add(sub5node);
19795                    sub4node->cd();   
19796                 //fNodes->Add(sub4node);  
19797              sub3node->cd(); 
19798              //fNodes->Add(sub3node);
19799              sub2node->cd(); 
19800              //
19801              // Place copy #3 of I1D7 in I20B
19802              //
19803              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-3.536,"");
19804              sub3node->SetLineColor(kColorITS);
19805              sub3node->SetVisibility(0);
19806              sub3node->cd();
19807                 //
19808                 // Place copy #1 of I1D1 in I1D7
19809                 //
19810                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
19811                 sub4node->SetLineColor(kColorITS);
19812                 sub4node->SetVisibility(0);
19813                 sub4node->cd();             
19814                    //
19815                    // Place copy #1 of ITS2 in I1D1
19816                    //
19817                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
19818                    sub5node->SetLineColor(kColorITS);                   
19819                    //fNodes->Add(sub5node);
19820                    sub4node->cd();   
19821                 //fNodes->Add(sub4node);  
19822              sub3node->cd(); 
19823              //fNodes->Add(sub3node);
19824              sub2node->cd(); 
19825              //
19826              // Place copy #4 of I1D7 in I20B
19827              //
19828              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-10.708,"");
19829              sub3node->SetLineColor(kColorITS);
19830              sub3node->SetVisibility(0);
19831              sub3node->cd();
19832                 //
19833                 // Place copy #1 of I1D1 in I1D7
19834                 //
19835                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
19836                 sub4node->SetLineColor(kColorITS);
19837                 sub4node->SetVisibility(0);
19838                 sub4node->cd();             
19839                    //
19840                    // Place copy #1 of ITS2 in I1D1
19841                    //
19842                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
19843                    sub5node->SetLineColor(kColorITS);                   
19844                    //fNodes->Add(sub5node);
19845                    sub4node->cd();   
19846                 //fNodes->Add(sub4node);  
19847              sub3node->cd(); 
19848              //fNodes->Add(sub3node);
19849              sub2node->cd(); 
19850           //fNodes->Add(sub2node);      
19851           sub1node->cd(); 
19852           //
19853           // Place copy #2 of I20B in I12B
19854           //
19855           deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(49.*TMath::Pi()/180.);  
19856           deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(49.*TMath::Pi()/180.);
19857           sub2node = new TNode("I20B","I20B","I20B",1.9612+deltax,6.9062+deltay,0.,"rot241");
19858           sub2node->SetLineColor(kColorITS);
19859           sub2node->SetVisibility(0);
19860           sub2node->cd();
19861              //
19862              // Place copy #1 of I1D7 in I20B
19863              //
19864              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],10.708,"");
19865              sub3node->SetLineColor(kColorITS);
19866              sub3node->SetVisibility(0);
19867              sub3node->cd();
19868                 //
19869                 // Place copy #1 of I1D1 in I1D7
19870                 //
19871                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
19872                 sub4node->SetLineColor(kColorITS);
19873                 sub4node->SetVisibility(0);
19874                 sub4node->cd();
19875                    //               
19876                    // Place copy #1 of ITS2 in I1D1
19877                    //
19878                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
19879                    sub5node->SetLineColor(kColorITS);                   
19880                    //fNodes->Add(sub5node);
19881                    sub4node->cd();   
19882                 //fNodes->Add(sub4node);  
19883              sub3node->cd(); 
19884              //fNodes->Add(sub3node);
19885              sub2node->cd(); 
19886              //
19887              // Place copy #2 of I1D7 in I20B
19888              //
19889              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],3.536,"");
19890              sub3node->SetLineColor(kColorITS);
19891              sub3node->SetVisibility(0);
19892              sub3node->cd();
19893                 //
19894                 // Place copy #1 of I1D1 in I1D7
19895                 //
19896                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
19897                 sub4node->SetLineColor(kColorITS);
19898                 sub4node->SetVisibility(0);
19899                 sub4node->cd();             
19900                    //
19901                    // Place copy #1 of ITS2 in I1D1
19902                    //
19903                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
19904                    sub5node->SetLineColor(kColorITS);                   
19905                    //fNodes->Add(sub5node);
19906                    sub4node->cd();   
19907                 //fNodes->Add(sub4node);  
19908              sub3node->cd(); 
19909              //fNodes->Add(sub3node);
19910              sub2node->cd(); 
19911              //
19912              // Place copy #3 of I1D7 in I20B
19913              //
19914              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-3.536,"");
19915              sub3node->SetLineColor(kColorITS);
19916              sub3node->SetVisibility(0);
19917              sub3node->cd();
19918                 //
19919                 // Place copy #1 of I1D1 in I1D7
19920                 //
19921                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
19922                 sub4node->SetLineColor(kColorITS);
19923                 sub4node->SetVisibility(0);
19924                 sub4node->cd();             
19925                    //
19926                    // Place copy #1 of ITS2 in I1D1
19927                    //
19928                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
19929                    sub5node->SetLineColor(kColorITS);                   
19930                    //fNodes->Add(sub5node);
19931                    sub4node->cd();   
19932                 //fNodes->Add(sub4node);  
19933              sub3node->cd(); 
19934              //fNodes->Add(sub3node);
19935              sub2node->cd(); 
19936              //
19937              // Place copy #4 of I1D7 in I20B
19938              //
19939              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-10.708,"");
19940              sub3node->SetLineColor(kColorITS);
19941              sub3node->SetVisibility(0);
19942              sub3node->cd();
19943                 //
19944                 // Place copy #1 of I1D1 in I1D7
19945                 //
19946                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
19947                 sub4node->SetLineColor(kColorITS);
19948                 sub4node->SetVisibility(0);
19949                 sub4node->cd();             
19950                    //
19951                    // Place copy #1 of ITS2 in I1D1
19952                    //
19953                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
19954                    sub5node->SetLineColor(kColorITS);                   
19955                    //fNodes->Add(sub5node);
19956                    sub4node->cd();   
19957                 //fNodes->Add(sub4node);  
19958              sub3node->cd(); 
19959              //fNodes->Add(sub3node);
19960              sub2node->cd(); 
19961           //fNodes->Add(sub2node);      
19962           sub1node->cd(); 
19963           //
19964           // Place copy #3 of I20B in I12B
19965           //
19966           deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(58.*TMath::Pi()/180.);  
19967           deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(58.*TMath::Pi()/180.);
19968           sub2node = new TNode("I20B","I20B","I20B",0.8567+deltax,7.1279+deltay,0.,"rot242");
19969           sub2node->SetLineColor(kColorITS);
19970           sub2node->SetVisibility(0);
19971           sub2node->cd();
19972              //
19973              // Place copy #1 of I1D7 in I20B
19974              //
19975              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],10.708,"");
19976              sub3node->SetLineColor(kColorITS);
19977              sub3node->SetVisibility(0);
19978              sub3node->cd();
19979                 //
19980                 // Place copy #1 of I1D1 in I1D7
19981                 //
19982                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
19983                 sub4node->SetLineColor(kColorITS);
19984                 sub4node->SetVisibility(0);
19985                 sub4node->cd();
19986                    //               
19987                    // Place copy #1 of ITS2 in I1D1
19988                    //
19989                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
19990                    sub5node->SetLineColor(kColorITS);                   
19991                    //fNodes->Add(sub5node);
19992                    sub4node->cd();   
19993                 //fNodes->Add(sub4node);  
19994              sub3node->cd(); 
19995              //fNodes->Add(sub3node);
19996              sub2node->cd(); 
19997              //
19998              // Place copy #2 of I1D7 in I20B
19999              //
20000              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],3.536,"");
20001              sub3node->SetLineColor(kColorITS);
20002              sub3node->SetVisibility(0);
20003              sub3node->cd();
20004                 //
20005                 // Place copy #1 of I1D1 in I1D7
20006                 //
20007                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
20008                 sub4node->SetLineColor(kColorITS);
20009                 sub4node->SetVisibility(0);
20010                 sub4node->cd();             
20011                    //
20012                    // Place copy #1 of ITS2 in I1D1
20013                    //
20014                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
20015                    sub5node->SetLineColor(kColorITS);                   
20016                    //fNodes->Add(sub5node);
20017                    sub4node->cd();   
20018                 //fNodes->Add(sub4node);  
20019              sub3node->cd(); 
20020              //fNodes->Add(sub3node);
20021              sub2node->cd(); 
20022              //
20023              // Place copy #3 of I1D7 in I20B
20024              //
20025              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-3.536,"");
20026              sub3node->SetLineColor(kColorITS);
20027              sub3node->SetVisibility(0);
20028              sub3node->cd();
20029                 //
20030                 // Place copy #1 of I1D1 in I1D7
20031                 //
20032                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
20033                 sub4node->SetLineColor(kColorITS);
20034                 sub4node->SetVisibility(0);
20035                 sub4node->cd();             
20036                    //
20037                    // Place copy #1 of ITS2 in I1D1
20038                    //
20039                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
20040                    sub5node->SetLineColor(kColorITS);                   
20041                    //fNodes->Add(sub5node);
20042                    sub4node->cd();   
20043                 //fNodes->Add(sub4node);  
20044              sub3node->cd(); 
20045              //fNodes->Add(sub3node);
20046              sub2node->cd(); 
20047              //
20048              // Place copy #4 of I1D7 in I20B
20049              //
20050              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-10.708,"");
20051              sub3node->SetLineColor(kColorITS);
20052              sub3node->SetVisibility(0);
20053              sub3node->cd();
20054                 //
20055                 // Place copy #1 of I1D1 in I1D7
20056                 //
20057                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
20058                 sub4node->SetLineColor(kColorITS);
20059                 sub4node->SetVisibility(0);
20060                 sub4node->cd();             
20061                    //
20062                    // Place copy #1 of ITS2 in I1D1
20063                    //
20064                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
20065                    sub5node->SetLineColor(kColorITS);                   
20066                    //fNodes->Add(sub5node);
20067                    sub4node->cd();   
20068                 //fNodes->Add(sub4node);  
20069              sub3node->cd(); 
20070              //fNodes->Add(sub3node);
20071              sub2node->cd(); 
20072           //fNodes->Add(sub2node);      
20073           sub1node->cd(); 
20074           //
20075           // Place copy #4 of I20B in I12B
20076           //
20077           deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(67.*TMath::Pi()/180.);  
20078           deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(67.*TMath::Pi()/180.);
20079           sub2node = new TNode("I20B","I20B","I20B",-0.2689+deltax,7.1742+deltay,0.,"rot243");
20080           sub2node->SetLineColor(kColorITS);
20081           sub2node->SetVisibility(0);
20082           sub2node->cd();
20083              //
20084              // Place copy #1 of I1D7 in I20B
20085              //
20086              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],10.708,"");
20087              sub3node->SetLineColor(kColorITS);
20088              sub3node->SetVisibility(0);
20089              sub3node->cd();
20090                 //
20091                 // Place copy #1 of I1D1 in I1D7
20092                 //
20093                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
20094                 sub4node->SetLineColor(kColorITS);
20095                 sub4node->SetVisibility(0);
20096                 sub4node->cd();
20097                    //               
20098                    // Place copy #1 of ITS2 in I1D1
20099                    //
20100                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
20101                    sub5node->SetLineColor(kColorITS);                   
20102                    //fNodes->Add(sub5node);
20103                    sub4node->cd();   
20104                 //fNodes->Add(sub4node);  
20105              sub3node->cd(); 
20106              //fNodes->Add(sub3node);
20107              sub2node->cd(); 
20108              //
20109              // Place copy #2 of I1D7 in I20B
20110              //
20111              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],3.536,"");
20112              sub3node->SetLineColor(kColorITS);
20113              sub3node->SetVisibility(0);
20114              sub3node->cd();
20115                 //
20116                 // Place copy #1 of I1D1 in I1D7
20117                 //
20118                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
20119                 sub4node->SetLineColor(kColorITS);
20120                 sub4node->SetVisibility(0);
20121                 sub4node->cd();             
20122                    //
20123                    // Place copy #1 of ITS2 in I1D1
20124                    //
20125                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
20126                    sub5node->SetLineColor(kColorITS);                   
20127                    //fNodes->Add(sub5node);
20128                    sub4node->cd();   
20129                 //fNodes->Add(sub4node);  
20130              sub3node->cd(); 
20131              //fNodes->Add(sub3node);
20132              sub2node->cd(); 
20133              //
20134              // Place copy #3 of I1D7 in I20B
20135              //
20136              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-3.536,"");
20137              sub3node->SetLineColor(kColorITS);
20138              sub3node->SetVisibility(0);
20139              sub3node->cd();
20140                 //
20141                 // Place copy #1 of I1D1 in I1D7
20142                 //
20143                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
20144                 sub4node->SetLineColor(kColorITS);
20145                 sub4node->SetVisibility(0);
20146                 sub4node->cd();             
20147                    //
20148                    // Place copy #1 of ITS2 in I1D1
20149                    //
20150                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
20151                    sub5node->SetLineColor(kColorITS);                   
20152                    //fNodes->Add(sub5node);
20153                    sub4node->cd();   
20154                 //fNodes->Add(sub4node);  
20155              sub3node->cd(); 
20156              //fNodes->Add(sub3node);
20157              sub2node->cd(); 
20158              //
20159              // Place copy #4 of I1D7 in I20B
20160              //
20161              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-10.708,"");
20162              sub3node->SetLineColor(kColorITS);
20163              sub3node->SetVisibility(0);
20164              sub3node->cd();
20165                 //
20166                 // Place copy #1 of I1D1 in I1D7
20167                 //
20168                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
20169                 sub4node->SetLineColor(kColorITS);
20170                 sub4node->SetVisibility(0);
20171                 sub4node->cd();             
20172                    //
20173                    // Place copy #1 of ITS2 in I1D1
20174                    //
20175                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
20176                    sub5node->SetLineColor(kColorITS);                   
20177                    //fNodes->Add(sub5node);
20178                    sub4node->cd();   
20179                 //fNodes->Add(sub4node);  
20180              sub3node->cd(); 
20181              //fNodes->Add(sub3node);
20182              sub2node->cd(); 
20183           //fNodes->Add(sub2node);      
20184           sub1node->cd(); 
20185        //fNodes->Add(sub1node);
20186        node->cd(); 
20187        //
20188        // Place copy #5 of I12B in IT12
20189        //
20190        sub1node = new TNode("I12B","I12B","I12B",0.,0.,0.,"rot247");
20191        sub1node->SetLineColor(kColorITS);
20192        sub1node->SetVisibility(0);
20193        sub1node->cd();    
20194           //
20195           // Place copy #1 of I10B in I12B
20196           //
20197           deltax=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Cos(252.*TMath::Pi()/180.);  
20198           deltay=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Sin(252.*TMath::Pi()/180.);
20199           sub2node = new TNode("I10B","I10B","I10B",1.4531+deltax,3.8152+deltay,0.,"rot239");
20200           sub2node->SetLineColor(kColorITS);
20201           sub2node->SetVisibility(0);
20202           sub2node->cd();
20203              //
20204              // Place copy #1 of I107 in I10B
20205              //
20206              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],10.708,"");
20207              sub3node->SetLineColor(kColorITS);
20208              sub3node->SetVisibility(0);
20209              sub3node->cd();
20210                 //
20211                 // Place copy #1 of I101 in I107
20212                 //
20213                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
20214                 sub4node->SetLineColor(kColorITS);
20215                 sub4node->SetVisibility(0);
20216                 sub4node->cd();
20217                    //               
20218                    // Place copy #1 of ITS1 in I101
20219                    //
20220                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
20221                    sub5node->SetLineColor(kColorITS);                   
20222                    //fNodes->Add(sub5node);
20223                    sub4node->cd();   
20224                 //fNodes->Add(sub4node);  
20225              sub3node->cd(); 
20226              //fNodes->Add(sub3node);
20227              sub2node->cd(); 
20228              //
20229              // Place copy #2 of I107 in I10B
20230              //
20231              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],3.536,"");
20232              sub3node->SetLineColor(kColorITS);
20233              sub3node->SetVisibility(0);
20234              sub3node->cd();
20235                 //
20236                 // Place copy #1 of I101 in I107
20237                 //
20238                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
20239                 sub4node->SetLineColor(kColorITS);
20240                 sub4node->SetVisibility(0);
20241                 sub4node->cd();             
20242                    //
20243                    // Place copy #1 of ITS1 in I101
20244                    //
20245                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
20246                    sub5node->SetLineColor(kColorITS);                   
20247                    //fNodes->Add(sub5node);
20248                    sub4node->cd();   
20249                 //fNodes->Add(sub4node);  
20250              sub3node->cd(); 
20251              //fNodes->Add(sub3node);
20252              sub2node->cd(); 
20253              //
20254              // Place copy #3 of I107 in I10B
20255              //
20256              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],-3.536,"");
20257              sub3node->SetLineColor(kColorITS);
20258              sub3node->SetVisibility(0);
20259              sub3node->cd();
20260                 //
20261                 // Place copy #1 of I101 in I107
20262                 //
20263                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
20264                 sub4node->SetLineColor(kColorITS);
20265                 sub4node->SetVisibility(0);
20266                 sub4node->cd();             
20267                    //
20268                    // Place copy #1 of ITS1 in I101
20269                    //
20270                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
20271                    sub5node->SetLineColor(kColorITS);                   
20272                    //fNodes->Add(sub5node);
20273                    sub4node->cd();   
20274                 //fNodes->Add(sub4node);  
20275              sub3node->cd(); 
20276              //fNodes->Add(sub3node);
20277              sub2node->cd(); 
20278              //
20279              // Place copy #4 of I107 in I10B
20280              //
20281              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],-10.708,"");
20282              sub3node->SetLineColor(kColorITS);
20283              sub3node->SetVisibility(0);
20284              sub3node->cd();
20285                 //
20286                 // Place copy #1 of I101 in I107
20287                 //
20288                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
20289                 sub4node->SetLineColor(kColorITS);
20290                 sub4node->SetVisibility(0);
20291                 sub4node->cd();             
20292                    //
20293                    // Place copy #1 of ITS1 in I101
20294                    //
20295                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
20296                    sub5node->SetLineColor(kColorITS);                   
20297                    //fNodes->Add(sub5node);
20298                    sub4node->cd();   
20299                 //fNodes->Add(sub4node);  
20300              sub3node->cd(); 
20301              //fNodes->Add(sub3node);
20302              sub2node->cd(); 
20303           //fNodes->Add(sub2node);      
20304           sub1node->cd(); 
20305           //
20306           // Place copy #2 of I10B in I12B
20307           //
20308           deltax=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Cos(270.*TMath::Pi()/180.);  
20309           deltay=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Sin(270.*TMath::Pi()/180.);
20310           sub2node = new TNode("I10B","I10B","I10B",0.203+deltax,3.8206+deltay,0.,"rot238");
20311           sub2node->SetLineColor(kColorITS);
20312           sub2node->SetVisibility(0);
20313           sub2node->cd();
20314              //
20315              // Place copy #1 of I107 in I10B
20316              //
20317              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],10.708,"");
20318              sub3node->SetLineColor(kColorITS);
20319              sub3node->SetVisibility(0);
20320              sub3node->cd();
20321                 //
20322                 // Place copy #1 of I101 in I107
20323                 //
20324                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
20325                 sub4node->SetLineColor(kColorITS);
20326                 sub4node->SetVisibility(0);
20327                 sub4node->cd();
20328                    //               
20329                    // Place copy #1 of ITS1 in I101
20330                    //
20331                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
20332                    sub5node->SetLineColor(kColorITS);                   
20333                    //fNodes->Add(sub5node);
20334                    sub4node->cd();   
20335                 //fNodes->Add(sub4node);  
20336              sub3node->cd(); 
20337              //fNodes->Add(sub3node);
20338              sub2node->cd(); 
20339              //
20340              // Place copy #2 of I107 in I10B
20341              //
20342              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],3.536,"");
20343              sub3node->SetLineColor(kColorITS);
20344              sub3node->SetVisibility(0);
20345              sub3node->cd();
20346                 //
20347                 // Place copy #1 of I101 in I107
20348                 //
20349                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
20350                 sub4node->SetLineColor(kColorITS);
20351                 sub4node->SetVisibility(0);
20352                 sub4node->cd();             
20353                    //
20354                    // Place copy #1 of ITS1 in I101
20355                    //
20356                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
20357                    sub5node->SetLineColor(kColorITS);                   
20358                    //fNodes->Add(sub5node);
20359                    sub4node->cd();   
20360                 //fNodes->Add(sub4node);  
20361              sub3node->cd(); 
20362              //fNodes->Add(sub3node);
20363              sub2node->cd(); 
20364              //
20365              // Place copy #3 of I107 in I10B
20366              //
20367              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],-3.536,"");
20368              sub3node->SetLineColor(kColorITS);
20369              sub3node->SetVisibility(0);
20370              sub3node->cd();
20371                 //
20372                 // Place copy #1 of I101 in I107
20373                 //
20374                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
20375                 sub4node->SetLineColor(kColorITS);
20376                 sub4node->SetVisibility(0);
20377                 sub4node->cd();             
20378                    //
20379                    // Place copy #1 of ITS1 in I101
20380                    //
20381                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
20382                    sub5node->SetLineColor(kColorITS);                   
20383                    //fNodes->Add(sub5node);
20384                    sub4node->cd();   
20385                 //fNodes->Add(sub4node);  
20386              sub3node->cd(); 
20387              //fNodes->Add(sub3node);
20388              sub2node->cd(); 
20389              //
20390              // Place copy #4 of I107 in I10B
20391              //
20392              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],-10.708,"");
20393              sub3node->SetLineColor(kColorITS);
20394              sub3node->SetVisibility(0);
20395              sub3node->cd();
20396                 //
20397                 // Place copy #1 of I101 in I107
20398                 //
20399                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
20400                 sub4node->SetLineColor(kColorITS);
20401                 sub4node->SetVisibility(0);
20402                 sub4node->cd();             
20403                    //
20404                    // Place copy #1 of ITS1 in I101
20405                    //
20406                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
20407                    sub5node->SetLineColor(kColorITS);                   
20408                    //fNodes->Add(sub5node);
20409                    sub4node->cd();   
20410                 //fNodes->Add(sub4node);  
20411              sub3node->cd(); 
20412              //fNodes->Add(sub3node);
20413              sub2node->cd(); 
20414           //fNodes->Add(sub2node);      
20415           sub1node->cd(); 
20416           //
20417           // Place copy #1 of I20B in I12B
20418           //
20419           deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(40.*TMath::Pi()/180.);  
20420           deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(40.*TMath::Pi()/180.);
20421           sub2node = new TNode("I20B","I20B","I20B",3.0174+deltax,6.5143+deltay,0.,"rot240");
20422           sub2node->SetLineColor(kColorITS);
20423           sub2node->SetVisibility(0);
20424           sub2node->cd();
20425              //
20426              // Place copy #1 of I1D7 in I20B
20427              //
20428              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],10.708,"");
20429              sub3node->SetLineColor(kColorITS);
20430              sub3node->SetVisibility(0);
20431              sub3node->cd();
20432                 //
20433                 // Place copy #1 of I1D1 in I1D7
20434                 //
20435                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
20436                 sub4node->SetLineColor(kColorITS);
20437                 sub4node->SetVisibility(0);
20438                 sub4node->cd();
20439                    //               
20440                    // Place copy #1 of ITS2 in I1D1
20441                    //
20442                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
20443                    sub5node->SetLineColor(kColorITS);                   
20444                    //fNodes->Add(sub5node);
20445                    sub4node->cd();   
20446                 //fNodes->Add(sub4node);  
20447              sub3node->cd(); 
20448              //fNodes->Add(sub3node);
20449              sub2node->cd(); 
20450              //
20451              // Place copy #2 of I1D7 in I20B
20452              //
20453              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],3.536,"");
20454              sub3node->SetLineColor(kColorITS);
20455              sub3node->SetVisibility(0);
20456              sub3node->cd();
20457                 //
20458                 // Place copy #1 of I1D1 in I1D7
20459                 //
20460                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
20461                 sub4node->SetLineColor(kColorITS);
20462                 sub4node->SetVisibility(0);
20463                 sub4node->cd();             
20464                    //
20465                    // Place copy #1 of ITS2 in I1D1
20466                    //
20467                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
20468                    sub5node->SetLineColor(kColorITS);                   
20469                    //fNodes->Add(sub5node);
20470                    sub4node->cd();   
20471                 //fNodes->Add(sub4node);  
20472              sub3node->cd(); 
20473              //fNodes->Add(sub3node);
20474              sub2node->cd(); 
20475              //
20476              // Place copy #3 of I1D7 in I20B
20477              //
20478              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-3.536,"");
20479              sub3node->SetLineColor(kColorITS);
20480              sub3node->SetVisibility(0);
20481              sub3node->cd();
20482                 //
20483                 // Place copy #1 of I1D1 in I1D7
20484                 //
20485                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
20486                 sub4node->SetLineColor(kColorITS);
20487                 sub4node->SetVisibility(0);
20488                 sub4node->cd();             
20489                    //
20490                    // Place copy #1 of ITS2 in I1D1
20491                    //
20492                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
20493                    sub5node->SetLineColor(kColorITS);                   
20494                    //fNodes->Add(sub5node);
20495                    sub4node->cd();   
20496                 //fNodes->Add(sub4node);  
20497              sub3node->cd(); 
20498              //fNodes->Add(sub3node);
20499              sub2node->cd(); 
20500              //
20501              // Place copy #4 of I1D7 in I20B
20502              //
20503              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-10.708,"");
20504              sub3node->SetLineColor(kColorITS);
20505              sub3node->SetVisibility(0);
20506              sub3node->cd();
20507                 //
20508                 // Place copy #1 of I1D1 in I1D7
20509                 //
20510                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
20511                 sub4node->SetLineColor(kColorITS);
20512                 sub4node->SetVisibility(0);
20513                 sub4node->cd();             
20514                    //
20515                    // Place copy #1 of ITS2 in I1D1
20516                    //
20517                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
20518                    sub5node->SetLineColor(kColorITS);                   
20519                    //fNodes->Add(sub5node);
20520                    sub4node->cd();   
20521                 //fNodes->Add(sub4node);  
20522              sub3node->cd(); 
20523              //fNodes->Add(sub3node);
20524              sub2node->cd(); 
20525           //fNodes->Add(sub2node);      
20526           sub1node->cd(); 
20527           //
20528           // Place copy #2 of I20B in I12B
20529           //
20530           deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(49.*TMath::Pi()/180.);  
20531           deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(49.*TMath::Pi()/180.);
20532           sub2node = new TNode("I20B","I20B","I20B",1.9612+deltax,6.9062+deltay,0.,"rot241");
20533           sub2node->SetLineColor(kColorITS);
20534           sub2node->SetVisibility(0);
20535           sub2node->cd();
20536              //
20537              // Place copy #1 of I1D7 in I20B
20538              //
20539              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],10.708,"");
20540              sub3node->SetLineColor(kColorITS);
20541              sub3node->SetVisibility(0);
20542              sub3node->cd();
20543                 //
20544                 // Place copy #1 of I1D1 in I1D7
20545                 //
20546                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
20547                 sub4node->SetLineColor(kColorITS);
20548                 sub4node->SetVisibility(0);
20549                 sub4node->cd();
20550                    //               
20551                    // Place copy #1 of ITS2 in I1D1
20552                    //
20553                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
20554                    sub5node->SetLineColor(kColorITS);                   
20555                    //fNodes->Add(sub5node);
20556                    sub4node->cd();   
20557                 //fNodes->Add(sub4node);  
20558              sub3node->cd(); 
20559              //fNodes->Add(sub3node);
20560              sub2node->cd(); 
20561              //
20562              // Place copy #2 of I1D7 in I20B
20563              //
20564              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],3.536,"");
20565              sub3node->SetLineColor(kColorITS);
20566              sub3node->SetVisibility(0);
20567              sub3node->cd();
20568                 //
20569                 // Place copy #1 of I1D1 in I1D7
20570                 //
20571                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
20572                 sub4node->SetLineColor(kColorITS);
20573                 sub4node->SetVisibility(0);
20574                 sub4node->cd();             
20575                    //
20576                    // Place copy #1 of ITS2 in I1D1
20577                    //
20578                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
20579                    sub5node->SetLineColor(kColorITS);                   
20580                    //fNodes->Add(sub5node);
20581                    sub4node->cd();   
20582                 //fNodes->Add(sub4node);  
20583              sub3node->cd(); 
20584              //fNodes->Add(sub3node);
20585              sub2node->cd(); 
20586              //
20587              // Place copy #3 of I1D7 in I20B
20588              //
20589              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-3.536,"");
20590              sub3node->SetLineColor(kColorITS);
20591              sub3node->SetVisibility(0);
20592              sub3node->cd();
20593                 //
20594                 // Place copy #1 of I1D1 in I1D7
20595                 //
20596                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
20597                 sub4node->SetLineColor(kColorITS);
20598                 sub4node->SetVisibility(0);
20599                 sub4node->cd();             
20600                    //
20601                    // Place copy #1 of ITS2 in I1D1
20602                    //
20603                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
20604                    sub5node->SetLineColor(kColorITS);                   
20605                    //fNodes->Add(sub5node);
20606                    sub4node->cd();   
20607                 //fNodes->Add(sub4node);  
20608              sub3node->cd(); 
20609              //fNodes->Add(sub3node);
20610              sub2node->cd(); 
20611              //
20612              // Place copy #4 of I1D7 in I20B
20613              //
20614              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-10.708,"");
20615              sub3node->SetLineColor(kColorITS);
20616              sub3node->SetVisibility(0);
20617              sub3node->cd();
20618                 //
20619                 // Place copy #1 of I1D1 in I1D7
20620                 //
20621                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
20622                 sub4node->SetLineColor(kColorITS);
20623                 sub4node->SetVisibility(0);
20624                 sub4node->cd();             
20625                    //
20626                    // Place copy #1 of ITS2 in I1D1
20627                    //
20628                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
20629                    sub5node->SetLineColor(kColorITS);                   
20630                    //fNodes->Add(sub5node);
20631                    sub4node->cd();   
20632                 //fNodes->Add(sub4node);  
20633              sub3node->cd(); 
20634              //fNodes->Add(sub3node);
20635              sub2node->cd(); 
20636           //fNodes->Add(sub2node);      
20637           sub1node->cd(); 
20638           //
20639           // Place copy #3 of I20B in I12B
20640           //
20641           deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(58.*TMath::Pi()/180.);  
20642           deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(58.*TMath::Pi()/180.);
20643           sub2node = new TNode("I20B","I20B","I20B",0.8567+deltax,7.1279+deltay,0.,"rot242");
20644           sub2node->SetLineColor(kColorITS);
20645           sub2node->SetVisibility(0);
20646           sub2node->cd();
20647              //
20648              // Place copy #1 of I1D7 in I20B
20649              //
20650              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],10.708,"");
20651              sub3node->SetLineColor(kColorITS);
20652              sub3node->SetVisibility(0);
20653              sub3node->cd();
20654                 //
20655                 // Place copy #1 of I1D1 in I1D7
20656                 //
20657                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
20658                 sub4node->SetLineColor(kColorITS);
20659                 sub4node->SetVisibility(0);
20660                 sub4node->cd();
20661                    //               
20662                    // Place copy #1 of ITS2 in I1D1
20663                    //
20664                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
20665                    sub5node->SetLineColor(kColorITS);                   
20666                    //fNodes->Add(sub5node);
20667                    sub4node->cd();   
20668                 //fNodes->Add(sub4node);  
20669              sub3node->cd(); 
20670              //fNodes->Add(sub3node);
20671              sub2node->cd(); 
20672              //
20673              // Place copy #2 of I1D7 in I20B
20674              //
20675              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],3.536,"");
20676              sub3node->SetLineColor(kColorITS);
20677              sub3node->SetVisibility(0);
20678              sub3node->cd();
20679                 //
20680                 // Place copy #1 of I1D1 in I1D7
20681                 //
20682                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
20683                 sub4node->SetLineColor(kColorITS);
20684                 sub4node->SetVisibility(0);
20685                 sub4node->cd();             
20686                    //
20687                    // Place copy #1 of ITS2 in I1D1
20688                    //
20689                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
20690                    sub5node->SetLineColor(kColorITS);                   
20691                    //fNodes->Add(sub5node);
20692                    sub4node->cd();   
20693                 //fNodes->Add(sub4node);  
20694              sub3node->cd(); 
20695              //fNodes->Add(sub3node);
20696              sub2node->cd(); 
20697              //
20698              // Place copy #3 of I1D7 in I20B
20699              //
20700              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-3.536,"");
20701              sub3node->SetLineColor(kColorITS);
20702              sub3node->SetVisibility(0);
20703              sub3node->cd();
20704                 //
20705                 // Place copy #1 of I1D1 in I1D7
20706                 //
20707                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
20708                 sub4node->SetLineColor(kColorITS);
20709                 sub4node->SetVisibility(0);
20710                 sub4node->cd();             
20711                    //
20712                    // Place copy #1 of ITS2 in I1D1
20713                    //
20714                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
20715                    sub5node->SetLineColor(kColorITS);                   
20716                    //fNodes->Add(sub5node);
20717                    sub4node->cd();   
20718                 //fNodes->Add(sub4node);  
20719              sub3node->cd(); 
20720              //fNodes->Add(sub3node);
20721              sub2node->cd(); 
20722              //
20723              // Place copy #4 of I1D7 in I20B
20724              //
20725              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-10.708,"");
20726              sub3node->SetLineColor(kColorITS);
20727              sub3node->SetVisibility(0);
20728              sub3node->cd();
20729                 //
20730                 // Place copy #1 of I1D1 in I1D7
20731                 //
20732                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
20733                 sub4node->SetLineColor(kColorITS);
20734                 sub4node->SetVisibility(0);
20735                 sub4node->cd();             
20736                    //
20737                    // Place copy #1 of ITS2 in I1D1
20738                    //
20739                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
20740                    sub5node->SetLineColor(kColorITS);                   
20741                    //fNodes->Add(sub5node);
20742                    sub4node->cd();   
20743                 //fNodes->Add(sub4node);  
20744              sub3node->cd(); 
20745              //fNodes->Add(sub3node);
20746              sub2node->cd(); 
20747           //fNodes->Add(sub2node);      
20748           sub1node->cd(); 
20749           //
20750           // Place copy #4 of I20B in I12B
20751           //
20752           deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(67.*TMath::Pi()/180.);  
20753           deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(67.*TMath::Pi()/180.);
20754           sub2node = new TNode("I20B","I20B","I20B",-0.2689+deltax,7.1742+deltay,0.,"rot243");
20755           sub2node->SetLineColor(kColorITS);
20756           sub2node->SetVisibility(0);
20757           sub2node->cd();
20758              //
20759              // Place copy #1 of I1D7 in I20B
20760              //
20761              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],10.708,"");
20762              sub3node->SetLineColor(kColorITS);
20763              sub3node->SetVisibility(0);
20764              sub3node->cd();
20765                 //
20766                 // Place copy #1 of I1D1 in I1D7
20767                 //
20768                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
20769                 sub4node->SetLineColor(kColorITS);
20770                 sub4node->SetVisibility(0);
20771                 sub4node->cd();
20772                    //               
20773                    // Place copy #1 of ITS2 in I1D1
20774                    //
20775                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
20776                    sub5node->SetLineColor(kColorITS);                   
20777                    //fNodes->Add(sub5node);
20778                    sub4node->cd();   
20779                 //fNodes->Add(sub4node);  
20780              sub3node->cd(); 
20781              //fNodes->Add(sub3node);
20782              sub2node->cd(); 
20783              //
20784              // Place copy #2 of I1D7 in I20B
20785              //
20786              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],3.536,"");
20787              sub3node->SetLineColor(kColorITS);
20788              sub3node->SetVisibility(0);
20789              sub3node->cd();
20790                 //
20791                 // Place copy #1 of I1D1 in I1D7
20792                 //
20793                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
20794                 sub4node->SetLineColor(kColorITS);
20795                 sub4node->SetVisibility(0);
20796                 sub4node->cd();             
20797                    //
20798                    // Place copy #1 of ITS2 in I1D1
20799                    //
20800                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
20801                    sub5node->SetLineColor(kColorITS);                   
20802                    //fNodes->Add(sub5node);
20803                    sub4node->cd();   
20804                 //fNodes->Add(sub4node);  
20805              sub3node->cd(); 
20806              //fNodes->Add(sub3node);
20807              sub2node->cd(); 
20808              //
20809              // Place copy #3 of I1D7 in I20B
20810              //
20811              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-3.536,"");
20812              sub3node->SetLineColor(kColorITS);
20813              sub3node->SetVisibility(0);
20814              sub3node->cd();
20815                 //
20816                 // Place copy #1 of I1D1 in I1D7
20817                 //
20818                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
20819                 sub4node->SetLineColor(kColorITS);
20820                 sub4node->SetVisibility(0);
20821                 sub4node->cd();             
20822                    //
20823                    // Place copy #1 of ITS2 in I1D1
20824                    //
20825                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
20826                    sub5node->SetLineColor(kColorITS);                   
20827                    //fNodes->Add(sub5node);
20828                    sub4node->cd();   
20829                 //fNodes->Add(sub4node);  
20830              sub3node->cd(); 
20831              //fNodes->Add(sub3node);
20832              sub2node->cd(); 
20833              //
20834              // Place copy #4 of I1D7 in I20B
20835              //
20836              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-10.708,"");
20837              sub3node->SetLineColor(kColorITS);
20838              sub3node->SetVisibility(0);
20839              sub3node->cd();
20840                 //
20841                 // Place copy #1 of I1D1 in I1D7
20842                 //
20843                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
20844                 sub4node->SetLineColor(kColorITS);
20845                 sub4node->SetVisibility(0);
20846                 sub4node->cd();             
20847                    //
20848                    // Place copy #1 of ITS2 in I1D1
20849                    //
20850                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
20851                    sub5node->SetLineColor(kColorITS);                   
20852                    //fNodes->Add(sub5node);
20853                    sub4node->cd();   
20854                 //fNodes->Add(sub4node);  
20855              sub3node->cd(); 
20856              //fNodes->Add(sub3node);
20857              sub2node->cd(); 
20858           //fNodes->Add(sub2node);      
20859           sub1node->cd(); 
20860        //fNodes->Add(sub1node);
20861        node->cd(); 
20862        //
20863        // Place copy #6 of I12B in IT12
20864        //
20865        sub1node = new TNode("I12B","I12B","I12B",0.,0.,0.,"rot236");
20866        sub1node->SetLineColor(kColorITS);
20867        sub1node->SetVisibility(0);
20868        sub1node->cd();    
20869           //
20870           // Place copy #1 of I10B in I12B
20871           //
20872           deltax=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Cos(252.*TMath::Pi()/180.);  
20873           deltay=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Sin(252.*TMath::Pi()/180.);
20874           sub2node = new TNode("I10B","I10B","I10B",1.4531+deltax,3.8152+deltay,0.,"rot239");
20875           sub2node->SetLineColor(kColorITS);
20876           sub2node->SetVisibility(0);
20877           sub2node->cd();
20878              //
20879              // Place copy #1 of I107 in I10B
20880              //
20881              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],10.708,"");
20882              sub3node->SetLineColor(kColorITS);
20883              sub3node->SetVisibility(0);
20884              sub3node->cd();
20885                 //
20886                 // Place copy #1 of I101 in I107
20887                 //
20888                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
20889                 sub4node->SetLineColor(kColorITS);
20890                 sub4node->SetVisibility(0);
20891                 sub4node->cd();
20892                    //               
20893                    // Place copy #1 of ITS1 in I101
20894                    //
20895                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
20896                    sub5node->SetLineColor(kColorITS);                   
20897                    //fNodes->Add(sub5node);
20898                    sub4node->cd();   
20899                 //fNodes->Add(sub4node);  
20900              sub3node->cd(); 
20901              //fNodes->Add(sub3node);
20902              sub2node->cd(); 
20903              //
20904              // Place copy #2 of I107 in I10B
20905              //
20906              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],3.536,"");
20907              sub3node->SetLineColor(kColorITS);
20908              sub3node->SetVisibility(0);
20909              sub3node->cd();
20910                 //
20911                 // Place copy #1 of I101 in I107
20912                 //
20913                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
20914                 sub4node->SetLineColor(kColorITS);
20915                 sub4node->SetVisibility(0);
20916                 sub4node->cd();             
20917                    //
20918                    // Place copy #1 of ITS1 in I101
20919                    //
20920                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
20921                    sub5node->SetLineColor(kColorITS);                   
20922                    //fNodes->Add(sub5node);
20923                    sub4node->cd();   
20924                 //fNodes->Add(sub4node);  
20925              sub3node->cd(); 
20926              //fNodes->Add(sub3node);
20927              sub2node->cd(); 
20928              //
20929              // Place copy #3 of I107 in I10B
20930              //
20931              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],-3.536,"");
20932              sub3node->SetLineColor(kColorITS);
20933              sub3node->SetVisibility(0);
20934              sub3node->cd();
20935                 //
20936                 // Place copy #1 of I101 in I107
20937                 //
20938                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
20939                 sub4node->SetLineColor(kColorITS);
20940                 sub4node->SetVisibility(0);
20941                 sub4node->cd();             
20942                    //
20943                    // Place copy #1 of ITS1 in I101
20944                    //
20945                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
20946                    sub5node->SetLineColor(kColorITS);                   
20947                    //fNodes->Add(sub5node);
20948                    sub4node->cd();   
20949                 //fNodes->Add(sub4node);  
20950              sub3node->cd(); 
20951              //fNodes->Add(sub3node);
20952              sub2node->cd(); 
20953              //
20954              // Place copy #4 of I107 in I10B
20955              //
20956              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],-10.708,"");
20957              sub3node->SetLineColor(kColorITS);
20958              sub3node->SetVisibility(0);
20959              sub3node->cd();
20960                 //
20961                 // Place copy #1 of I101 in I107
20962                 //
20963                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
20964                 sub4node->SetLineColor(kColorITS);
20965                 sub4node->SetVisibility(0);
20966                 sub4node->cd();             
20967                    //
20968                    // Place copy #1 of ITS1 in I101
20969                    //
20970                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
20971                    sub5node->SetLineColor(kColorITS);                   
20972                    //fNodes->Add(sub5node);
20973                    sub4node->cd();   
20974                 //fNodes->Add(sub4node);  
20975              sub3node->cd(); 
20976              //fNodes->Add(sub3node);
20977              sub2node->cd(); 
20978           //fNodes->Add(sub2node);      
20979           sub1node->cd(); 
20980           //
20981           // Place copy #2 of I10B in I12B
20982           //
20983           deltax=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Cos(270.*TMath::Pi()/180.);  
20984           deltay=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Sin(270.*TMath::Pi()/180.);
20985           sub2node = new TNode("I10B","I10B","I10B",0.203+deltax,3.8206+deltay,0.,"rot238");
20986           sub2node->SetLineColor(kColorITS);
20987           sub2node->SetVisibility(0);
20988           sub2node->cd();
20989              //
20990              // Place copy #1 of I107 in I10B
20991              //
20992              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],10.708,"");
20993              sub3node->SetLineColor(kColorITS);
20994              sub3node->SetVisibility(0);
20995              sub3node->cd();
20996                 //
20997                 // Place copy #1 of I101 in I107
20998                 //
20999                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
21000                 sub4node->SetLineColor(kColorITS);
21001                 sub4node->SetVisibility(0);
21002                 sub4node->cd();
21003                    //               
21004                    // Place copy #1 of ITS1 in I101
21005                    //
21006                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
21007                    sub5node->SetLineColor(kColorITS);                   
21008                    //fNodes->Add(sub5node);
21009                    sub4node->cd();   
21010                 //fNodes->Add(sub4node);  
21011              sub3node->cd(); 
21012              //fNodes->Add(sub3node);
21013              sub2node->cd(); 
21014              //
21015              // Place copy #2 of I107 in I10B
21016              //
21017              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],3.536,"");
21018              sub3node->SetLineColor(kColorITS);
21019              sub3node->SetVisibility(0);
21020              sub3node->cd();
21021                 //
21022                 // Place copy #1 of I101 in I107
21023                 //
21024                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
21025                 sub4node->SetLineColor(kColorITS);
21026                 sub4node->SetVisibility(0);
21027                 sub4node->cd();             
21028                    //
21029                    // Place copy #1 of ITS1 in I101
21030                    //
21031                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
21032                    sub5node->SetLineColor(kColorITS);                   
21033                    //fNodes->Add(sub5node);
21034                    sub4node->cd();   
21035                 //fNodes->Add(sub4node);  
21036              sub3node->cd(); 
21037              //fNodes->Add(sub3node);
21038              sub2node->cd(); 
21039              //
21040              // Place copy #3 of I107 in I10B
21041              //
21042              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],-3.536,"");
21043              sub3node->SetLineColor(kColorITS);
21044              sub3node->SetVisibility(0);
21045              sub3node->cd();
21046                 //
21047                 // Place copy #1 of I101 in I107
21048                 //
21049                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
21050                 sub4node->SetLineColor(kColorITS);
21051                 sub4node->SetVisibility(0);
21052                 sub4node->cd();             
21053                    //
21054                    // Place copy #1 of ITS1 in I101
21055                    //
21056                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
21057                    sub5node->SetLineColor(kColorITS);                   
21058                    //fNodes->Add(sub5node);
21059                    sub4node->cd();   
21060                 //fNodes->Add(sub4node);  
21061              sub3node->cd(); 
21062              //fNodes->Add(sub3node);
21063              sub2node->cd(); 
21064              //
21065              // Place copy #4 of I107 in I10B
21066              //
21067              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],-10.708,"");
21068              sub3node->SetLineColor(kColorITS);
21069              sub3node->SetVisibility(0);
21070              sub3node->cd();
21071                 //
21072                 // Place copy #1 of I101 in I107
21073                 //
21074                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
21075                 sub4node->SetLineColor(kColorITS);
21076                 sub4node->SetVisibility(0);
21077                 sub4node->cd();             
21078                    //
21079                    // Place copy #1 of ITS1 in I101
21080                    //
21081                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
21082                    sub5node->SetLineColor(kColorITS);                   
21083                    //fNodes->Add(sub5node);
21084                    sub4node->cd();   
21085                 //fNodes->Add(sub4node);  
21086              sub3node->cd(); 
21087              //fNodes->Add(sub3node);
21088              sub2node->cd(); 
21089           //fNodes->Add(sub2node);      
21090           sub1node->cd(); 
21091           //
21092           // Place copy #1 of I20B in I12B
21093           //
21094           deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(40.*TMath::Pi()/180.);  
21095           deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(40.*TMath::Pi()/180.);
21096           sub2node = new TNode("I20B","I20B","I20B",3.0174+deltax,6.5143+deltay,0.,"rot240");
21097           sub2node->SetLineColor(kColorITS);
21098           sub2node->SetVisibility(0);
21099           sub2node->cd();
21100              //
21101              // Place copy #1 of I1D7 in I20B
21102              //
21103              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],10.708,"");
21104              sub3node->SetLineColor(kColorITS);
21105              sub3node->SetVisibility(0);
21106              sub3node->cd();
21107                 //
21108                 // Place copy #1 of I1D1 in I1D7
21109                 //
21110                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
21111                 sub4node->SetLineColor(kColorITS);
21112                 sub4node->SetVisibility(0);
21113                 sub4node->cd();
21114                    //               
21115                    // Place copy #1 of ITS2 in I1D1
21116                    //
21117                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
21118                    sub5node->SetLineColor(kColorITS);                   
21119                    //fNodes->Add(sub5node);
21120                    sub4node->cd();   
21121                 //fNodes->Add(sub4node);  
21122              sub3node->cd(); 
21123              //fNodes->Add(sub3node);
21124              sub2node->cd(); 
21125              //
21126              // Place copy #2 of I1D7 in I20B
21127              //
21128              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],3.536,"");
21129              sub3node->SetLineColor(kColorITS);
21130              sub3node->SetVisibility(0);
21131              sub3node->cd();
21132                 //
21133                 // Place copy #1 of I1D1 in I1D7
21134                 //
21135                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
21136                 sub4node->SetLineColor(kColorITS);
21137                 sub4node->SetVisibility(0);
21138                 sub4node->cd();             
21139                    //
21140                    // Place copy #1 of ITS2 in I1D1
21141                    //
21142                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
21143                    sub5node->SetLineColor(kColorITS);                   
21144                    //fNodes->Add(sub5node);
21145                    sub4node->cd();   
21146                 //fNodes->Add(sub4node);  
21147              sub3node->cd(); 
21148              //fNodes->Add(sub3node);
21149              sub2node->cd(); 
21150              //
21151              // Place copy #3 of I1D7 in I20B
21152              //
21153              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-3.536,"");
21154              sub3node->SetLineColor(kColorITS);
21155              sub3node->SetVisibility(0);
21156              sub3node->cd();
21157                 //
21158                 // Place copy #1 of I1D1 in I1D7
21159                 //
21160                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
21161                 sub4node->SetLineColor(kColorITS);
21162                 sub4node->SetVisibility(0);
21163                 sub4node->cd();             
21164                    //
21165                    // Place copy #1 of ITS2 in I1D1
21166                    //
21167                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
21168                    sub5node->SetLineColor(kColorITS);                   
21169                    //fNodes->Add(sub5node);
21170                    sub4node->cd();   
21171                 //fNodes->Add(sub4node);  
21172              sub3node->cd(); 
21173              //fNodes->Add(sub3node);
21174              sub2node->cd(); 
21175              //
21176              // Place copy #4 of I1D7 in I20B
21177              //
21178              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-10.708,"");
21179              sub3node->SetLineColor(kColorITS);
21180              sub3node->SetVisibility(0);
21181              sub3node->cd();
21182                 //
21183                 // Place copy #1 of I1D1 in I1D7
21184                 //
21185                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
21186                 sub4node->SetLineColor(kColorITS);
21187                 sub4node->SetVisibility(0);
21188                 sub4node->cd();             
21189                    //
21190                    // Place copy #1 of ITS2 in I1D1
21191                    //
21192                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
21193                    sub5node->SetLineColor(kColorITS);                   
21194                    //fNodes->Add(sub5node);
21195                    sub4node->cd();   
21196                 //fNodes->Add(sub4node);  
21197              sub3node->cd(); 
21198              //fNodes->Add(sub3node);
21199              sub2node->cd(); 
21200           //fNodes->Add(sub2node);      
21201           sub1node->cd(); 
21202           //
21203           // Place copy #2 of I20B in I12B
21204           //
21205           deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(49.*TMath::Pi()/180.);  
21206           deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(49.*TMath::Pi()/180.);
21207           sub2node = new TNode("I20B","I20B","I20B",1.9612+deltax,6.9062+deltay,0.,"rot241");
21208           sub2node->SetLineColor(kColorITS);
21209           sub2node->SetVisibility(0);
21210           sub2node->cd();
21211              //
21212              // Place copy #1 of I1D7 in I20B
21213              //
21214              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],10.708,"");
21215              sub3node->SetLineColor(kColorITS);
21216              sub3node->SetVisibility(0);
21217              sub3node->cd();
21218                 //
21219                 // Place copy #1 of I1D1 in I1D7
21220                 //
21221                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
21222                 sub4node->SetLineColor(kColorITS);
21223                 sub4node->SetVisibility(0);
21224                 sub4node->cd();
21225                    //               
21226                    // Place copy #1 of ITS2 in I1D1
21227                    //
21228                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
21229                    sub5node->SetLineColor(kColorITS);                   
21230                    //fNodes->Add(sub5node);
21231                    sub4node->cd();   
21232                 //fNodes->Add(sub4node);  
21233              sub3node->cd(); 
21234              //fNodes->Add(sub3node);
21235              sub2node->cd(); 
21236              //
21237              // Place copy #2 of I1D7 in I20B
21238              //
21239              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],3.536,"");
21240              sub3node->SetLineColor(kColorITS);
21241              sub3node->SetVisibility(0);
21242              sub3node->cd();
21243                 //
21244                 // Place copy #1 of I1D1 in I1D7
21245                 //
21246                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
21247                 sub4node->SetLineColor(kColorITS);
21248                 sub4node->SetVisibility(0);
21249                 sub4node->cd();             
21250                    //
21251                    // Place copy #1 of ITS2 in I1D1
21252                    //
21253                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
21254                    sub5node->SetLineColor(kColorITS);                   
21255                    //fNodes->Add(sub5node);
21256                    sub4node->cd();   
21257                 //fNodes->Add(sub4node);  
21258              sub3node->cd(); 
21259              //fNodes->Add(sub3node);
21260              sub2node->cd(); 
21261              //
21262              // Place copy #3 of I1D7 in I20B
21263              //
21264              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-3.536,"");
21265              sub3node->SetLineColor(kColorITS);
21266              sub3node->SetVisibility(0);
21267              sub3node->cd();
21268                 //
21269                 // Place copy #1 of I1D1 in I1D7
21270                 //
21271                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
21272                 sub4node->SetLineColor(kColorITS);
21273                 sub4node->SetVisibility(0);
21274                 sub4node->cd();             
21275                    //
21276                    // Place copy #1 of ITS2 in I1D1
21277                    //
21278                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
21279                    sub5node->SetLineColor(kColorITS);                   
21280                    //fNodes->Add(sub5node);
21281                    sub4node->cd();   
21282                 //fNodes->Add(sub4node);  
21283              sub3node->cd(); 
21284              //fNodes->Add(sub3node);
21285              sub2node->cd(); 
21286              //
21287              // Place copy #4 of I1D7 in I20B
21288              //
21289              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-10.708,"");
21290              sub3node->SetLineColor(kColorITS);
21291              sub3node->SetVisibility(0);
21292              sub3node->cd();
21293                 //
21294                 // Place copy #1 of I1D1 in I1D7
21295                 //
21296                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
21297                 sub4node->SetLineColor(kColorITS);
21298                 sub4node->SetVisibility(0);
21299                 sub4node->cd();             
21300                    //
21301                    // Place copy #1 of ITS2 in I1D1
21302                    //
21303                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
21304                    sub5node->SetLineColor(kColorITS);                   
21305                    //fNodes->Add(sub5node);
21306                    sub4node->cd();   
21307                 //fNodes->Add(sub4node);  
21308              sub3node->cd(); 
21309              //fNodes->Add(sub3node);
21310              sub2node->cd(); 
21311           //fNodes->Add(sub2node);      
21312           sub1node->cd(); 
21313           //
21314           // Place copy #3 of I20B in I12B
21315           //
21316           deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(58.*TMath::Pi()/180.);  
21317           deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(58.*TMath::Pi()/180.);
21318           sub2node = new TNode("I20B","I20B","I20B",0.8567+deltax,7.1279+deltay,0.,"rot242");
21319           sub2node->SetLineColor(kColorITS);
21320           sub2node->SetVisibility(0);
21321           sub2node->cd();
21322              //
21323              // Place copy #1 of I1D7 in I20B
21324              //
21325              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],10.708,"");
21326              sub3node->SetLineColor(kColorITS);
21327              sub3node->SetVisibility(0);
21328              sub3node->cd();
21329                 //
21330                 // Place copy #1 of I1D1 in I1D7
21331                 //
21332                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
21333                 sub4node->SetLineColor(kColorITS);
21334                 sub4node->SetVisibility(0);
21335                 sub4node->cd();
21336                    //               
21337                    // Place copy #1 of ITS2 in I1D1
21338                    //
21339                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
21340                    sub5node->SetLineColor(kColorITS);                   
21341                    //fNodes->Add(sub5node);
21342                    sub4node->cd();   
21343                 //fNodes->Add(sub4node);  
21344              sub3node->cd(); 
21345              //fNodes->Add(sub3node);
21346              sub2node->cd(); 
21347              //
21348              // Place copy #2 of I1D7 in I20B
21349              //
21350              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],3.536,"");
21351              sub3node->SetLineColor(kColorITS);
21352              sub3node->SetVisibility(0);
21353              sub3node->cd();
21354                 //
21355                 // Place copy #1 of I1D1 in I1D7
21356                 //
21357                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
21358                 sub4node->SetLineColor(kColorITS);
21359                 sub4node->SetVisibility(0);
21360                 sub4node->cd();             
21361                    //
21362                    // Place copy #1 of ITS2 in I1D1
21363                    //
21364                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
21365                    sub5node->SetLineColor(kColorITS);                   
21366                    //fNodes->Add(sub5node);
21367                    sub4node->cd();   
21368                 //fNodes->Add(sub4node);  
21369              sub3node->cd(); 
21370              //fNodes->Add(sub3node);
21371              sub2node->cd(); 
21372              //
21373              // Place copy #3 of I1D7 in I20B
21374              //
21375              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-3.536,"");
21376              sub3node->SetLineColor(kColorITS);
21377              sub3node->SetVisibility(0);
21378              sub3node->cd();
21379                 //
21380                 // Place copy #1 of I1D1 in I1D7
21381                 //
21382                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
21383                 sub4node->SetLineColor(kColorITS);
21384                 sub4node->SetVisibility(0);
21385                 sub4node->cd();             
21386                    //
21387                    // Place copy #1 of ITS2 in I1D1
21388                    //
21389                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
21390                    sub5node->SetLineColor(kColorITS);                   
21391                    //fNodes->Add(sub5node);
21392                    sub4node->cd();   
21393                 //fNodes->Add(sub4node);  
21394              sub3node->cd(); 
21395              //fNodes->Add(sub3node);
21396              sub2node->cd(); 
21397              //
21398              // Place copy #4 of I1D7 in I20B
21399              //
21400              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-10.708,"");
21401              sub3node->SetLineColor(kColorITS);
21402              sub3node->SetVisibility(0);
21403              sub3node->cd();
21404                 //
21405                 // Place copy #1 of I1D1 in I1D7
21406                 //
21407                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
21408                 sub4node->SetLineColor(kColorITS);
21409                 sub4node->SetVisibility(0);
21410                 sub4node->cd();             
21411                    //
21412                    // Place copy #1 of ITS2 in I1D1
21413                    //
21414                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
21415                    sub5node->SetLineColor(kColorITS);                   
21416                    //fNodes->Add(sub5node);
21417                    sub4node->cd();   
21418                 //fNodes->Add(sub4node);  
21419              sub3node->cd(); 
21420              //fNodes->Add(sub3node);
21421              sub2node->cd(); 
21422           //fNodes->Add(sub2node);      
21423           sub1node->cd(); 
21424           //
21425           // Place copy #4 of I20B in I12B
21426           //
21427           deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(67.*TMath::Pi()/180.);  
21428           deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(67.*TMath::Pi()/180.);
21429           sub2node = new TNode("I20B","I20B","I20B",-0.2689+deltax,7.1742+deltay,0.,"rot243");
21430           sub2node->SetLineColor(kColorITS);
21431           sub2node->SetVisibility(0);
21432           sub2node->cd();
21433              //
21434              // Place copy #1 of I1D7 in I20B
21435              //
21436              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],10.708,"");
21437              sub3node->SetLineColor(kColorITS);
21438              sub3node->SetVisibility(0);
21439              sub3node->cd();
21440                 //
21441                 // Place copy #1 of I1D1 in I1D7
21442                 //
21443                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
21444                 sub4node->SetLineColor(kColorITS);
21445                 sub4node->SetVisibility(0);
21446                 sub4node->cd();
21447                    //               
21448                    // Place copy #1 of ITS2 in I1D1
21449                    //
21450                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
21451                    sub5node->SetLineColor(kColorITS);                   
21452                    //fNodes->Add(sub5node);
21453                    sub4node->cd();   
21454                 //fNodes->Add(sub4node);  
21455              sub3node->cd(); 
21456              //fNodes->Add(sub3node);
21457              sub2node->cd(); 
21458              //
21459              // Place copy #2 of I1D7 in I20B
21460              //
21461              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],3.536,"");
21462              sub3node->SetLineColor(kColorITS);
21463              sub3node->SetVisibility(0);
21464              sub3node->cd();
21465                 //
21466                 // Place copy #1 of I1D1 in I1D7
21467                 //
21468                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
21469                 sub4node->SetLineColor(kColorITS);
21470                 sub4node->SetVisibility(0);
21471                 sub4node->cd();             
21472                    //
21473                    // Place copy #1 of ITS2 in I1D1
21474                    //
21475                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
21476                    sub5node->SetLineColor(kColorITS);                   
21477                    //fNodes->Add(sub5node);
21478                    sub4node->cd();   
21479                 //fNodes->Add(sub4node);  
21480              sub3node->cd(); 
21481              //fNodes->Add(sub3node);
21482              sub2node->cd(); 
21483              //
21484              // Place copy #3 of I1D7 in I20B
21485              //
21486              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-3.536,"");
21487              sub3node->SetLineColor(kColorITS);
21488              sub3node->SetVisibility(0);
21489              sub3node->cd();
21490                 //
21491                 // Place copy #1 of I1D1 in I1D7
21492                 //
21493                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
21494                 sub4node->SetLineColor(kColorITS);
21495                 sub4node->SetVisibility(0);
21496                 sub4node->cd();             
21497                    //
21498                    // Place copy #1 of ITS2 in I1D1
21499                    //
21500                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
21501                    sub5node->SetLineColor(kColorITS);                   
21502                    //fNodes->Add(sub5node);
21503                    sub4node->cd();   
21504                 //fNodes->Add(sub4node);  
21505              sub3node->cd(); 
21506              //fNodes->Add(sub3node);
21507              sub2node->cd(); 
21508              //
21509              // Place copy #4 of I1D7 in I20B
21510              //
21511              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-10.708,"");
21512              sub3node->SetLineColor(kColorITS);
21513              sub3node->SetVisibility(0);
21514              sub3node->cd();
21515                 //
21516                 // Place copy #1 of I1D1 in I1D7
21517                 //
21518                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
21519                 sub4node->SetLineColor(kColorITS);
21520                 sub4node->SetVisibility(0);
21521                 sub4node->cd();             
21522                    //
21523                    // Place copy #1 of ITS2 in I1D1
21524                    //
21525                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
21526                    sub5node->SetLineColor(kColorITS);                   
21527                    //fNodes->Add(sub5node);
21528                    sub4node->cd();   
21529                 //fNodes->Add(sub4node);  
21530              sub3node->cd(); 
21531              //fNodes->Add(sub3node);
21532              sub2node->cd(); 
21533           //fNodes->Add(sub2node);      
21534           sub1node->cd(); 
21535        //fNodes->Add(sub1node);
21536        node->cd(); 
21537        //
21538        // Place copy #7 of I12B in IT12
21539        //
21540        sub1node = new TNode("I12B","I12B","I12B",0.,0.,0.,"rot244");
21541        sub1node->SetLineColor(kColorITS);
21542        sub1node->SetVisibility(0);
21543        sub1node->cd();    
21544           //
21545           // Place copy #1 of I10B in I12B
21546           //
21547           deltax=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Cos(252.*TMath::Pi()/180.);  
21548           deltay=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Sin(252.*TMath::Pi()/180.);
21549           sub2node = new TNode("I10B","I10B","I10B",1.4531+deltax,3.8152+deltay,0.,"rot239");
21550           sub2node->SetLineColor(kColorITS);
21551           sub2node->SetVisibility(0);
21552           sub2node->cd();
21553              //
21554              // Place copy #1 of I107 in I10B
21555              //
21556              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],10.708,"");
21557              sub3node->SetLineColor(kColorITS);
21558              sub3node->SetVisibility(0);
21559              sub3node->cd();
21560                 //
21561                 // Place copy #1 of I101 in I107
21562                 //
21563                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
21564                 sub4node->SetLineColor(kColorITS);
21565                 sub4node->SetVisibility(0);
21566                 sub4node->cd();
21567                    //               
21568                    // Place copy #1 of ITS1 in I101
21569                    //
21570                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
21571                    sub5node->SetLineColor(kColorITS);                   
21572                    //fNodes->Add(sub5node);
21573                    sub4node->cd();   
21574                 //fNodes->Add(sub4node);  
21575              sub3node->cd(); 
21576              //fNodes->Add(sub3node);
21577              sub2node->cd(); 
21578              //
21579              // Place copy #2 of I107 in I10B
21580              //
21581              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],3.536,"");
21582              sub3node->SetLineColor(kColorITS);
21583              sub3node->SetVisibility(0);
21584              sub3node->cd();
21585                 //
21586                 // Place copy #1 of I101 in I107
21587                 //
21588                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
21589                 sub4node->SetLineColor(kColorITS);
21590                 sub4node->SetVisibility(0);
21591                 sub4node->cd();             
21592                    //
21593                    // Place copy #1 of ITS1 in I101
21594                    //
21595                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
21596                    sub5node->SetLineColor(kColorITS);                   
21597                    //fNodes->Add(sub5node);
21598                    sub4node->cd();   
21599                 //fNodes->Add(sub4node);  
21600              sub3node->cd(); 
21601              //fNodes->Add(sub3node);
21602              sub2node->cd(); 
21603              //
21604              // Place copy #3 of I107 in I10B
21605              //
21606              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],-3.536,"");
21607              sub3node->SetLineColor(kColorITS);
21608              sub3node->SetVisibility(0);
21609              sub3node->cd();
21610                 //
21611                 // Place copy #1 of I101 in I107
21612                 //
21613                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
21614                 sub4node->SetLineColor(kColorITS);
21615                 sub4node->SetVisibility(0);
21616                 sub4node->cd();             
21617                    //
21618                    // Place copy #1 of ITS1 in I101
21619                    //
21620                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
21621                    sub5node->SetLineColor(kColorITS);                   
21622                    //fNodes->Add(sub5node);
21623                    sub4node->cd();   
21624                 //fNodes->Add(sub4node);  
21625              sub3node->cd(); 
21626              //fNodes->Add(sub3node);
21627              sub2node->cd(); 
21628              //
21629              // Place copy #4 of I107 in I10B
21630              //
21631              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],-10.708,"");
21632              sub3node->SetLineColor(kColorITS);
21633              sub3node->SetVisibility(0);
21634              sub3node->cd();
21635                 //
21636                 // Place copy #1 of I101 in I107
21637                 //
21638                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
21639                 sub4node->SetLineColor(kColorITS);
21640                 sub4node->SetVisibility(0);
21641                 sub4node->cd();             
21642                    //
21643                    // Place copy #1 of ITS1 in I101
21644                    //
21645                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
21646                    sub5node->SetLineColor(kColorITS);                   
21647                    //fNodes->Add(sub5node);
21648                    sub4node->cd();   
21649                 //fNodes->Add(sub4node);  
21650              sub3node->cd(); 
21651              //fNodes->Add(sub3node);
21652              sub2node->cd(); 
21653           //fNodes->Add(sub2node);      
21654           sub1node->cd(); 
21655           //
21656           // Place copy #2 of I10B in I12B
21657           //
21658           deltax=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Cos(270.*TMath::Pi()/180.);  
21659           deltay=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Sin(270.*TMath::Pi()/180.);
21660           sub2node = new TNode("I10B","I10B","I10B",0.203+deltax,3.8206+deltay,0.,"rot238");
21661           sub2node->SetLineColor(kColorITS);
21662           sub2node->SetVisibility(0);
21663           sub2node->cd();
21664              //
21665              // Place copy #1 of I107 in I10B
21666              //
21667              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],10.708,"");
21668              sub3node->SetLineColor(kColorITS);
21669              sub3node->SetVisibility(0);
21670              sub3node->cd();
21671                 //
21672                 // Place copy #1 of I101 in I107
21673                 //
21674                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
21675                 sub4node->SetLineColor(kColorITS);
21676                 sub4node->SetVisibility(0);
21677                 sub4node->cd();
21678                    //               
21679                    // Place copy #1 of ITS1 in I101
21680                    //
21681                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
21682                    sub5node->SetLineColor(kColorITS);                   
21683                    //fNodes->Add(sub5node);
21684                    sub4node->cd();   
21685                 //fNodes->Add(sub4node);  
21686              sub3node->cd(); 
21687              //fNodes->Add(sub3node);
21688              sub2node->cd(); 
21689              //
21690              // Place copy #2 of I107 in I10B
21691              //
21692              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],3.536,"");
21693              sub3node->SetLineColor(kColorITS);
21694              sub3node->SetVisibility(0);
21695              sub3node->cd();
21696                 //
21697                 // Place copy #1 of I101 in I107
21698                 //
21699                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
21700                 sub4node->SetLineColor(kColorITS);
21701                 sub4node->SetVisibility(0);
21702                 sub4node->cd();             
21703                    //
21704                    // Place copy #1 of ITS1 in I101
21705                    //
21706                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
21707                    sub5node->SetLineColor(kColorITS);                   
21708                    //fNodes->Add(sub5node);
21709                    sub4node->cd();   
21710                 //fNodes->Add(sub4node);  
21711              sub3node->cd(); 
21712              //fNodes->Add(sub3node);
21713              sub2node->cd(); 
21714              //
21715              // Place copy #3 of I107 in I10B
21716              //
21717              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],-3.536,"");
21718              sub3node->SetLineColor(kColorITS);
21719              sub3node->SetVisibility(0);
21720              sub3node->cd();
21721                 //
21722                 // Place copy #1 of I101 in I107
21723                 //
21724                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
21725                 sub4node->SetLineColor(kColorITS);
21726                 sub4node->SetVisibility(0);
21727                 sub4node->cd();             
21728                    //
21729                    // Place copy #1 of ITS1 in I101
21730                    //
21731                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
21732                    sub5node->SetLineColor(kColorITS);                   
21733                    //fNodes->Add(sub5node);
21734                    sub4node->cd();   
21735                 //fNodes->Add(sub4node);  
21736              sub3node->cd(); 
21737              //fNodes->Add(sub3node);
21738              sub2node->cd(); 
21739              //
21740              // Place copy #4 of I107 in I10B
21741              //
21742              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],-10.708,"");
21743              sub3node->SetLineColor(kColorITS);
21744              sub3node->SetVisibility(0);
21745              sub3node->cd();
21746                 //
21747                 // Place copy #1 of I101 in I107
21748                 //
21749                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
21750                 sub4node->SetLineColor(kColorITS);
21751                 sub4node->SetVisibility(0);
21752                 sub4node->cd();             
21753                    //
21754                    // Place copy #1 of ITS1 in I101
21755                    //
21756                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
21757                    sub5node->SetLineColor(kColorITS);                   
21758                    //fNodes->Add(sub5node);
21759                    sub4node->cd();   
21760                 //fNodes->Add(sub4node);  
21761              sub3node->cd(); 
21762              //fNodes->Add(sub3node);
21763              sub2node->cd(); 
21764           //fNodes->Add(sub2node);      
21765           sub1node->cd(); 
21766           //
21767           // Place copy #1 of I20B in I12B
21768           //
21769           deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(40.*TMath::Pi()/180.);  
21770           deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(40.*TMath::Pi()/180.);
21771           sub2node = new TNode("I20B","I20B","I20B",3.0174+deltax,6.5143+deltay,0.,"rot240");
21772           sub2node->SetLineColor(kColorITS);
21773           sub2node->SetVisibility(0);
21774           sub2node->cd();
21775              //
21776              // Place copy #1 of I1D7 in I20B
21777              //
21778              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],10.708,"");
21779              sub3node->SetLineColor(kColorITS);
21780              sub3node->SetVisibility(0);
21781              sub3node->cd();
21782                 //
21783                 // Place copy #1 of I1D1 in I1D7
21784                 //
21785                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
21786                 sub4node->SetLineColor(kColorITS);
21787                 sub4node->SetVisibility(0);
21788                 sub4node->cd();
21789                    //               
21790                    // Place copy #1 of ITS2 in I1D1
21791                    //
21792                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
21793                    sub5node->SetLineColor(kColorITS);                   
21794                    //fNodes->Add(sub5node);
21795                    sub4node->cd();   
21796                 //fNodes->Add(sub4node);  
21797              sub3node->cd(); 
21798              //fNodes->Add(sub3node);
21799              sub2node->cd(); 
21800              //
21801              // Place copy #2 of I1D7 in I20B
21802              //
21803              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],3.536,"");
21804              sub3node->SetLineColor(kColorITS);
21805              sub3node->SetVisibility(0);
21806              sub3node->cd();
21807                 //
21808                 // Place copy #1 of I1D1 in I1D7
21809                 //
21810                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
21811                 sub4node->SetLineColor(kColorITS);
21812                 sub4node->SetVisibility(0);
21813                 sub4node->cd();             
21814                    //
21815                    // Place copy #1 of ITS2 in I1D1
21816                    //
21817                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
21818                    sub5node->SetLineColor(kColorITS);                   
21819                    //fNodes->Add(sub5node);
21820                    sub4node->cd();   
21821                 //fNodes->Add(sub4node);  
21822              sub3node->cd(); 
21823              //fNodes->Add(sub3node);
21824              sub2node->cd(); 
21825              //
21826              // Place copy #3 of I1D7 in I20B
21827              //
21828              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-3.536,"");
21829              sub3node->SetLineColor(kColorITS);
21830              sub3node->SetVisibility(0);
21831              sub3node->cd();
21832                 //
21833                 // Place copy #1 of I1D1 in I1D7
21834                 //
21835                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
21836                 sub4node->SetLineColor(kColorITS);
21837                 sub4node->SetVisibility(0);
21838                 sub4node->cd();             
21839                    //
21840                    // Place copy #1 of ITS2 in I1D1
21841                    //
21842                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
21843                    sub5node->SetLineColor(kColorITS);                   
21844                    //fNodes->Add(sub5node);
21845                    sub4node->cd();   
21846                 //fNodes->Add(sub4node);  
21847              sub3node->cd(); 
21848              //fNodes->Add(sub3node);
21849              sub2node->cd(); 
21850              //
21851              // Place copy #4 of I1D7 in I20B
21852              //
21853              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-10.708,"");
21854              sub3node->SetLineColor(kColorITS);
21855              sub3node->SetVisibility(0);
21856              sub3node->cd();
21857                 //
21858                 // Place copy #1 of I1D1 in I1D7
21859                 //
21860                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
21861                 sub4node->SetLineColor(kColorITS);
21862                 sub4node->SetVisibility(0);
21863                 sub4node->cd();             
21864                    //
21865                    // Place copy #1 of ITS2 in I1D1
21866                    //
21867                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
21868                    sub5node->SetLineColor(kColorITS);                   
21869                    //fNodes->Add(sub5node);
21870                    sub4node->cd();   
21871                 //fNodes->Add(sub4node);  
21872              sub3node->cd(); 
21873              //fNodes->Add(sub3node);
21874              sub2node->cd(); 
21875           //fNodes->Add(sub2node);      
21876           sub1node->cd(); 
21877           //
21878           // Place copy #2 of I20B in I12B
21879           //
21880           deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(49.*TMath::Pi()/180.);  
21881           deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(49.*TMath::Pi()/180.);
21882           sub2node = new TNode("I20B","I20B","I20B",1.9612+deltax,6.9062+deltay,0.,"rot241");
21883           sub2node->SetLineColor(kColorITS);
21884           sub2node->SetVisibility(0);
21885           sub2node->cd();
21886              //
21887              // Place copy #1 of I1D7 in I20B
21888              //
21889              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],10.708,"");
21890              sub3node->SetLineColor(kColorITS);
21891              sub3node->SetVisibility(0);
21892              sub3node->cd();
21893                 //
21894                 // Place copy #1 of I1D1 in I1D7
21895                 //
21896                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
21897                 sub4node->SetLineColor(kColorITS);
21898                 sub4node->SetVisibility(0);
21899                 sub4node->cd();
21900                    //               
21901                    // Place copy #1 of ITS2 in I1D1
21902                    //
21903                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
21904                    sub5node->SetLineColor(kColorITS);                   
21905                    //fNodes->Add(sub5node);
21906                    sub4node->cd();   
21907                 //fNodes->Add(sub4node);  
21908              sub3node->cd(); 
21909              //fNodes->Add(sub3node);
21910              sub2node->cd(); 
21911              //
21912              // Place copy #2 of I1D7 in I20B
21913              //
21914              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],3.536,"");
21915              sub3node->SetLineColor(kColorITS);
21916              sub3node->SetVisibility(0);
21917              sub3node->cd();
21918                 //
21919                 // Place copy #1 of I1D1 in I1D7
21920                 //
21921                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
21922                 sub4node->SetLineColor(kColorITS);
21923                 sub4node->SetVisibility(0);
21924                 sub4node->cd();             
21925                    //
21926                    // Place copy #1 of ITS2 in I1D1
21927                    //
21928                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
21929                    sub5node->SetLineColor(kColorITS);                   
21930                    //fNodes->Add(sub5node);
21931                    sub4node->cd();   
21932                 //fNodes->Add(sub4node);  
21933              sub3node->cd(); 
21934              //fNodes->Add(sub3node);
21935              sub2node->cd(); 
21936              //
21937              // Place copy #3 of I1D7 in I20B
21938              //
21939              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-3.536,"");
21940              sub3node->SetLineColor(kColorITS);
21941              sub3node->SetVisibility(0);
21942              sub3node->cd();
21943                 //
21944                 // Place copy #1 of I1D1 in I1D7
21945                 //
21946                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
21947                 sub4node->SetLineColor(kColorITS);
21948                 sub4node->SetVisibility(0);
21949                 sub4node->cd();             
21950                    //
21951                    // Place copy #1 of ITS2 in I1D1
21952                    //
21953                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
21954                    sub5node->SetLineColor(kColorITS);                   
21955                    //fNodes->Add(sub5node);
21956                    sub4node->cd();   
21957                 //fNodes->Add(sub4node);  
21958              sub3node->cd(); 
21959              //fNodes->Add(sub3node);
21960              sub2node->cd(); 
21961              //
21962              // Place copy #4 of I1D7 in I20B
21963              //
21964              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-10.708,"");
21965              sub3node->SetLineColor(kColorITS);
21966              sub3node->SetVisibility(0);
21967              sub3node->cd();
21968                 //
21969                 // Place copy #1 of I1D1 in I1D7
21970                 //
21971                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
21972                 sub4node->SetLineColor(kColorITS);
21973                 sub4node->SetVisibility(0);
21974                 sub4node->cd();             
21975                    //
21976                    // Place copy #1 of ITS2 in I1D1
21977                    //
21978                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
21979                    sub5node->SetLineColor(kColorITS);                   
21980                    //fNodes->Add(sub5node);
21981                    sub4node->cd();   
21982                 //fNodes->Add(sub4node);  
21983              sub3node->cd(); 
21984              //fNodes->Add(sub3node);
21985              sub2node->cd(); 
21986           //fNodes->Add(sub2node);      
21987           sub1node->cd(); 
21988           //
21989           // Place copy #3 of I20B in I12B
21990           //
21991           deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(58.*TMath::Pi()/180.);  
21992           deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(58.*TMath::Pi()/180.);
21993           sub2node = new TNode("I20B","I20B","I20B",0.8567+deltax,7.1279+deltay,0.,"rot242");
21994           sub2node->SetLineColor(kColorITS);
21995           sub2node->SetVisibility(0);
21996           sub2node->cd();
21997              //
21998              // Place copy #1 of I1D7 in I20B
21999              //
22000              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],10.708,"");
22001              sub3node->SetLineColor(kColorITS);
22002              sub3node->SetVisibility(0);
22003              sub3node->cd();
22004                 //
22005                 // Place copy #1 of I1D1 in I1D7
22006                 //
22007                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
22008                 sub4node->SetLineColor(kColorITS);
22009                 sub4node->SetVisibility(0);
22010                 sub4node->cd();
22011                    //               
22012                    // Place copy #1 of ITS2 in I1D1
22013                    //
22014                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
22015                    sub5node->SetLineColor(kColorITS);                   
22016                    //fNodes->Add(sub5node);
22017                    sub4node->cd();   
22018                 //fNodes->Add(sub4node);  
22019              sub3node->cd(); 
22020              //fNodes->Add(sub3node);
22021              sub2node->cd(); 
22022              //
22023              // Place copy #2 of I1D7 in I20B
22024              //
22025              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],3.536,"");
22026              sub3node->SetLineColor(kColorITS);
22027              sub3node->SetVisibility(0);
22028              sub3node->cd();
22029                 //
22030                 // Place copy #1 of I1D1 in I1D7
22031                 //
22032                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
22033                 sub4node->SetLineColor(kColorITS);
22034                 sub4node->SetVisibility(0);
22035                 sub4node->cd();             
22036                    //
22037                    // Place copy #1 of ITS2 in I1D1
22038                    //
22039                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
22040                    sub5node->SetLineColor(kColorITS);                   
22041                    //fNodes->Add(sub5node);
22042                    sub4node->cd();   
22043                 //fNodes->Add(sub4node);  
22044              sub3node->cd(); 
22045              //fNodes->Add(sub3node);
22046              sub2node->cd(); 
22047              //
22048              // Place copy #3 of I1D7 in I20B
22049              //
22050              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-3.536,"");
22051              sub3node->SetLineColor(kColorITS);
22052              sub3node->SetVisibility(0);
22053              sub3node->cd();
22054                 //
22055                 // Place copy #1 of I1D1 in I1D7
22056                 //
22057                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
22058                 sub4node->SetLineColor(kColorITS);
22059                 sub4node->SetVisibility(0);
22060                 sub4node->cd();             
22061                    //
22062                    // Place copy #1 of ITS2 in I1D1
22063                    //
22064                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
22065                    sub5node->SetLineColor(kColorITS);                   
22066                    //fNodes->Add(sub5node);
22067                    sub4node->cd();   
22068                 //fNodes->Add(sub4node);  
22069              sub3node->cd(); 
22070              //fNodes->Add(sub3node);
22071              sub2node->cd(); 
22072              //
22073              // Place copy #4 of I1D7 in I20B
22074              //
22075              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-10.708,"");
22076              sub3node->SetLineColor(kColorITS);
22077              sub3node->SetVisibility(0);
22078              sub3node->cd();
22079                 //
22080                 // Place copy #1 of I1D1 in I1D7
22081                 //
22082                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
22083                 sub4node->SetLineColor(kColorITS);
22084                 sub4node->SetVisibility(0);
22085                 sub4node->cd();             
22086                    //
22087                    // Place copy #1 of ITS2 in I1D1
22088                    //
22089                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
22090                    sub5node->SetLineColor(kColorITS);                   
22091                    //fNodes->Add(sub5node);
22092                    sub4node->cd();   
22093                 //fNodes->Add(sub4node);  
22094              sub3node->cd(); 
22095              //fNodes->Add(sub3node);
22096              sub2node->cd(); 
22097           //fNodes->Add(sub2node);      
22098           sub1node->cd(); 
22099           //
22100           // Place copy #4 of I20B in I12B
22101           //
22102           deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(67.*TMath::Pi()/180.);  
22103           deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(67.*TMath::Pi()/180.);
22104           sub2node = new TNode("I20B","I20B","I20B",-0.2689+deltax,7.1742+deltay,0.,"rot243");
22105           sub2node->SetLineColor(kColorITS);
22106           sub2node->SetVisibility(0);
22107           sub2node->cd();
22108              //
22109              // Place copy #1 of I1D7 in I20B
22110              //
22111              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],10.708,"");
22112              sub3node->SetLineColor(kColorITS);
22113              sub3node->SetVisibility(0);
22114              sub3node->cd();
22115                 //
22116                 // Place copy #1 of I1D1 in I1D7
22117                 //
22118                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
22119                 sub4node->SetLineColor(kColorITS);
22120                 sub4node->SetVisibility(0);
22121                 sub4node->cd();
22122                    //               
22123                    // Place copy #1 of ITS2 in I1D1
22124                    //
22125                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
22126                    sub5node->SetLineColor(kColorITS);                   
22127                    //fNodes->Add(sub5node);
22128                    sub4node->cd();   
22129                 //fNodes->Add(sub4node);  
22130              sub3node->cd(); 
22131              //fNodes->Add(sub3node);
22132              sub2node->cd(); 
22133              //
22134              // Place copy #2 of I1D7 in I20B
22135              //
22136              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],3.536,"");
22137              sub3node->SetLineColor(kColorITS);
22138              sub3node->SetVisibility(0);
22139              sub3node->cd();
22140                 //
22141                 // Place copy #1 of I1D1 in I1D7
22142                 //
22143                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
22144                 sub4node->SetLineColor(kColorITS);
22145                 sub4node->SetVisibility(0);
22146                 sub4node->cd();             
22147                    //
22148                    // Place copy #1 of ITS2 in I1D1
22149                    //
22150                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
22151                    sub5node->SetLineColor(kColorITS);                   
22152                    //fNodes->Add(sub5node);
22153                    sub4node->cd();   
22154                 //fNodes->Add(sub4node);  
22155              sub3node->cd(); 
22156              //fNodes->Add(sub3node);
22157              sub2node->cd(); 
22158              //
22159              // Place copy #3 of I1D7 in I20B
22160              //
22161              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-3.536,"");
22162              sub3node->SetLineColor(kColorITS);
22163              sub3node->SetVisibility(0);
22164              sub3node->cd();
22165                 //
22166                 // Place copy #1 of I1D1 in I1D7
22167                 //
22168                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
22169                 sub4node->SetLineColor(kColorITS);
22170                 sub4node->SetVisibility(0);
22171                 sub4node->cd();             
22172                    //
22173                    // Place copy #1 of ITS2 in I1D1
22174                    //
22175                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
22176                    sub5node->SetLineColor(kColorITS);                   
22177                    //fNodes->Add(sub5node);
22178                    sub4node->cd();   
22179                 //fNodes->Add(sub4node);  
22180              sub3node->cd(); 
22181              //fNodes->Add(sub3node);
22182              sub2node->cd(); 
22183              //
22184              // Place copy #4 of I1D7 in I20B
22185              //
22186              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-10.708,"");
22187              sub3node->SetLineColor(kColorITS);
22188              sub3node->SetVisibility(0);
22189              sub3node->cd();
22190                 //
22191                 // Place copy #1 of I1D1 in I1D7
22192                 //
22193                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
22194                 sub4node->SetLineColor(kColorITS);
22195                 sub4node->SetVisibility(0);
22196                 sub4node->cd();             
22197                    //
22198                    // Place copy #1 of ITS2 in I1D1
22199                    //
22200                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
22201                    sub5node->SetLineColor(kColorITS);                   
22202                    //fNodes->Add(sub5node);
22203                    sub4node->cd();   
22204                 //fNodes->Add(sub4node);  
22205              sub3node->cd(); 
22206              //fNodes->Add(sub3node);
22207              sub2node->cd(); 
22208           //fNodes->Add(sub2node);      
22209           sub1node->cd(); 
22210        //fNodes->Add(sub1node);
22211        node->cd(); 
22212        //
22213        // Place copy #8 of I12B in IT12
22214        //
22215        sub1node = new TNode("I12B","I12B","I12B",0.,0.,0.,"rot233");
22216        sub1node->SetLineColor(kColorITS);
22217        sub1node->SetVisibility(0);
22218        sub1node->cd();    
22219           //
22220           // Place copy #1 of I10B in I12B
22221           //
22222           deltax=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Cos(252.*TMath::Pi()/180.);  
22223           deltay=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Sin(252.*TMath::Pi()/180.);
22224           sub2node = new TNode("I10B","I10B","I10B",1.4531+deltax,3.8152+deltay,0.,"rot239");
22225           sub2node->SetLineColor(kColorITS);
22226           sub2node->SetVisibility(0);
22227           sub2node->cd();
22228              //
22229              // Place copy #1 of I107 in I10B
22230              //
22231              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],10.708,"");
22232              sub3node->SetLineColor(kColorITS);
22233              sub3node->SetVisibility(0);
22234              sub3node->cd();
22235                 //
22236                 // Place copy #1 of I101 in I107
22237                 //
22238                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
22239                 sub4node->SetLineColor(kColorITS);
22240                 sub4node->SetVisibility(0);
22241                 sub4node->cd();
22242                    //               
22243                    // Place copy #1 of ITS1 in I101
22244                    //
22245                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
22246                    sub5node->SetLineColor(kColorITS);                   
22247                    //fNodes->Add(sub5node);
22248                    sub4node->cd();   
22249                 //fNodes->Add(sub4node);  
22250              sub3node->cd(); 
22251              //fNodes->Add(sub3node);
22252              sub2node->cd(); 
22253              //
22254              // Place copy #2 of I107 in I10B
22255              //
22256              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],3.536,"");
22257              sub3node->SetLineColor(kColorITS);
22258              sub3node->SetVisibility(0);
22259              sub3node->cd();
22260                 //
22261                 // Place copy #1 of I101 in I107
22262                 //
22263                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
22264                 sub4node->SetLineColor(kColorITS);
22265                 sub4node->SetVisibility(0);
22266                 sub4node->cd();             
22267                    //
22268                    // Place copy #1 of ITS1 in I101
22269                    //
22270                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
22271                    sub5node->SetLineColor(kColorITS);                   
22272                    //fNodes->Add(sub5node);
22273                    sub4node->cd();   
22274                 //fNodes->Add(sub4node);  
22275              sub3node->cd(); 
22276              //fNodes->Add(sub3node);
22277              sub2node->cd(); 
22278              //
22279              // Place copy #3 of I107 in I10B
22280              //
22281              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],-3.536,"");
22282              sub3node->SetLineColor(kColorITS);
22283              sub3node->SetVisibility(0);
22284              sub3node->cd();
22285                 //
22286                 // Place copy #1 of I101 in I107
22287                 //
22288                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
22289                 sub4node->SetLineColor(kColorITS);
22290                 sub4node->SetVisibility(0);
22291                 sub4node->cd();             
22292                    //
22293                    // Place copy #1 of ITS1 in I101
22294                    //
22295                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
22296                    sub5node->SetLineColor(kColorITS);                   
22297                    //fNodes->Add(sub5node);
22298                    sub4node->cd();   
22299                 //fNodes->Add(sub4node);  
22300              sub3node->cd(); 
22301              //fNodes->Add(sub3node);
22302              sub2node->cd(); 
22303              //
22304              // Place copy #4 of I107 in I10B
22305              //
22306              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],-10.708,"");
22307              sub3node->SetLineColor(kColorITS);
22308              sub3node->SetVisibility(0);
22309              sub3node->cd();
22310                 //
22311                 // Place copy #1 of I101 in I107
22312                 //
22313                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
22314                 sub4node->SetLineColor(kColorITS);
22315                 sub4node->SetVisibility(0);
22316                 sub4node->cd();             
22317                    //
22318                    // Place copy #1 of ITS1 in I101
22319                    //
22320                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
22321                    sub5node->SetLineColor(kColorITS);                   
22322                    //fNodes->Add(sub5node);
22323                    sub4node->cd();   
22324                 //fNodes->Add(sub4node);  
22325              sub3node->cd(); 
22326              //fNodes->Add(sub3node);
22327              sub2node->cd(); 
22328           //fNodes->Add(sub2node);      
22329           sub1node->cd(); 
22330           //
22331           // Place copy #2 of I10B in I12B
22332           //
22333           deltax=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Cos(270.*TMath::Pi()/180.);  
22334           deltay=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Sin(270.*TMath::Pi()/180.);
22335           sub2node = new TNode("I10B","I10B","I10B",0.203+deltax,3.8206+deltay,0.,"rot238");
22336           sub2node->SetLineColor(kColorITS);
22337           sub2node->SetVisibility(0);
22338           sub2node->cd();
22339              //
22340              // Place copy #1 of I107 in I10B
22341              //
22342              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],10.708,"");
22343              sub3node->SetLineColor(kColorITS);
22344              sub3node->SetVisibility(0);
22345              sub3node->cd();
22346                 //
22347                 // Place copy #1 of I101 in I107
22348                 //
22349                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
22350                 sub4node->SetLineColor(kColorITS);
22351                 sub4node->SetVisibility(0);
22352                 sub4node->cd();
22353                    //               
22354                    // Place copy #1 of ITS1 in I101
22355                    //
22356                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
22357                    sub5node->SetLineColor(kColorITS);                   
22358                    //fNodes->Add(sub5node);
22359                    sub4node->cd();   
22360                 //fNodes->Add(sub4node);  
22361              sub3node->cd(); 
22362              //fNodes->Add(sub3node);
22363              sub2node->cd(); 
22364              //
22365              // Place copy #2 of I107 in I10B
22366              //
22367              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],3.536,"");
22368              sub3node->SetLineColor(kColorITS);
22369              sub3node->SetVisibility(0);
22370              sub3node->cd();
22371                 //
22372                 // Place copy #1 of I101 in I107
22373                 //
22374                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
22375                 sub4node->SetLineColor(kColorITS);
22376                 sub4node->SetVisibility(0);
22377                 sub4node->cd();             
22378                    //
22379                    // Place copy #1 of ITS1 in I101
22380                    //
22381                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
22382                    sub5node->SetLineColor(kColorITS);                   
22383                    //fNodes->Add(sub5node);
22384                    sub4node->cd();   
22385                 //fNodes->Add(sub4node);  
22386              sub3node->cd(); 
22387              //fNodes->Add(sub3node);
22388              sub2node->cd(); 
22389              //
22390              // Place copy #3 of I107 in I10B
22391              //
22392              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],-3.536,"");
22393              sub3node->SetLineColor(kColorITS);
22394              sub3node->SetVisibility(0);
22395              sub3node->cd();
22396                 //
22397                 // Place copy #1 of I101 in I107
22398                 //
22399                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
22400                 sub4node->SetLineColor(kColorITS);
22401                 sub4node->SetVisibility(0);
22402                 sub4node->cd();             
22403                    //
22404                    // Place copy #1 of ITS1 in I101
22405                    //
22406                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
22407                    sub5node->SetLineColor(kColorITS);                   
22408                    //fNodes->Add(sub5node);
22409                    sub4node->cd();   
22410                 //fNodes->Add(sub4node);  
22411              sub3node->cd(); 
22412              //fNodes->Add(sub3node);
22413              sub2node->cd(); 
22414              //
22415              // Place copy #4 of I107 in I10B
22416              //
22417              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],-10.708,"");
22418              sub3node->SetLineColor(kColorITS);
22419              sub3node->SetVisibility(0);
22420              sub3node->cd();
22421                 //
22422                 // Place copy #1 of I101 in I107
22423                 //
22424                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
22425                 sub4node->SetLineColor(kColorITS);
22426                 sub4node->SetVisibility(0);
22427                 sub4node->cd();             
22428                    //
22429                    // Place copy #1 of ITS1 in I101
22430                    //
22431                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
22432                    sub5node->SetLineColor(kColorITS);                   
22433                    //fNodes->Add(sub5node);
22434                    sub4node->cd();   
22435                 //fNodes->Add(sub4node);  
22436              sub3node->cd(); 
22437              //fNodes->Add(sub3node);
22438              sub2node->cd(); 
22439           //fNodes->Add(sub2node);      
22440           sub1node->cd(); 
22441           //
22442           // Place copy #1 of I20B in I12B
22443           //
22444           deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(40.*TMath::Pi()/180.);  
22445           deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(40.*TMath::Pi()/180.);
22446           sub2node = new TNode("I20B","I20B","I20B",3.0174+deltax,6.5143+deltay,0.,"rot240");
22447           sub2node->SetLineColor(kColorITS);
22448           sub2node->SetVisibility(0);
22449           sub2node->cd();
22450              //
22451              // Place copy #1 of I1D7 in I20B
22452              //
22453              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],10.708,"");
22454              sub3node->SetLineColor(kColorITS);
22455              sub3node->SetVisibility(0);
22456              sub3node->cd();
22457                 //
22458                 // Place copy #1 of I1D1 in I1D7
22459                 //
22460                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
22461                 sub4node->SetLineColor(kColorITS);
22462                 sub4node->SetVisibility(0);
22463                 sub4node->cd();
22464                    //               
22465                    // Place copy #1 of ITS2 in I1D1
22466                    //
22467                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
22468                    sub5node->SetLineColor(kColorITS);                   
22469                    //fNodes->Add(sub5node);
22470                    sub4node->cd();   
22471                 //fNodes->Add(sub4node);  
22472              sub3node->cd(); 
22473              //fNodes->Add(sub3node);
22474              sub2node->cd(); 
22475              //
22476              // Place copy #2 of I1D7 in I20B
22477              //
22478              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],3.536,"");
22479              sub3node->SetLineColor(kColorITS);
22480              sub3node->SetVisibility(0);
22481              sub3node->cd();
22482                 //
22483                 // Place copy #1 of I1D1 in I1D7
22484                 //
22485                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
22486                 sub4node->SetLineColor(kColorITS);
22487                 sub4node->SetVisibility(0);
22488                 sub4node->cd();             
22489                    //
22490                    // Place copy #1 of ITS2 in I1D1
22491                    //
22492                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
22493                    sub5node->SetLineColor(kColorITS);                   
22494                    //fNodes->Add(sub5node);
22495                    sub4node->cd();   
22496                 //fNodes->Add(sub4node);  
22497              sub3node->cd(); 
22498              //fNodes->Add(sub3node);
22499              sub2node->cd(); 
22500              //
22501              // Place copy #3 of I1D7 in I20B
22502              //
22503              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-3.536,"");
22504              sub3node->SetLineColor(kColorITS);
22505              sub3node->SetVisibility(0);
22506              sub3node->cd();
22507                 //
22508                 // Place copy #1 of I1D1 in I1D7
22509                 //
22510                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
22511                 sub4node->SetLineColor(kColorITS);
22512                 sub4node->SetVisibility(0);
22513                 sub4node->cd();             
22514                    //
22515                    // Place copy #1 of ITS2 in I1D1
22516                    //
22517                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
22518                    sub5node->SetLineColor(kColorITS);                   
22519                    //fNodes->Add(sub5node);
22520                    sub4node->cd();   
22521                 //fNodes->Add(sub4node);  
22522              sub3node->cd(); 
22523              //fNodes->Add(sub3node);
22524              sub2node->cd(); 
22525              //
22526              // Place copy #4 of I1D7 in I20B
22527              //
22528              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-10.708,"");
22529              sub3node->SetLineColor(kColorITS);
22530              sub3node->SetVisibility(0);
22531              sub3node->cd();
22532                 //
22533                 // Place copy #1 of I1D1 in I1D7
22534                 //
22535                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
22536                 sub4node->SetLineColor(kColorITS);
22537                 sub4node->SetVisibility(0);
22538                 sub4node->cd();             
22539                    //
22540                    // Place copy #1 of ITS2 in I1D1
22541                    //
22542                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
22543                    sub5node->SetLineColor(kColorITS);                   
22544                    //fNodes->Add(sub5node);
22545                    sub4node->cd();   
22546                 //fNodes->Add(sub4node);  
22547              sub3node->cd(); 
22548              //fNodes->Add(sub3node);
22549              sub2node->cd(); 
22550           //fNodes->Add(sub2node);      
22551           sub1node->cd(); 
22552           //
22553           // Place copy #2 of I20B in I12B
22554           //
22555           deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(49.*TMath::Pi()/180.);  
22556           deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(49.*TMath::Pi()/180.);
22557           sub2node = new TNode("I20B","I20B","I20B",1.9612+deltax,6.9062+deltay,0.,"rot241");
22558           sub2node->SetLineColor(kColorITS);
22559           sub2node->SetVisibility(0);
22560           sub2node->cd();
22561              //
22562              // Place copy #1 of I1D7 in I20B
22563              //
22564              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],10.708,"");
22565              sub3node->SetLineColor(kColorITS);
22566              sub3node->SetVisibility(0);
22567              sub3node->cd();
22568                 //
22569                 // Place copy #1 of I1D1 in I1D7
22570                 //
22571                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
22572                 sub4node->SetLineColor(kColorITS);
22573                 sub4node->SetVisibility(0);
22574                 sub4node->cd();
22575                    //               
22576                    // Place copy #1 of ITS2 in I1D1
22577                    //
22578                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
22579                    sub5node->SetLineColor(kColorITS);                   
22580                    //fNodes->Add(sub5node);
22581                    sub4node->cd();   
22582                 //fNodes->Add(sub4node);  
22583              sub3node->cd(); 
22584              //fNodes->Add(sub3node);
22585              sub2node->cd(); 
22586              //
22587              // Place copy #2 of I1D7 in I20B
22588              //
22589              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],3.536,"");
22590              sub3node->SetLineColor(kColorITS);
22591              sub3node->SetVisibility(0);
22592              sub3node->cd();
22593                 //
22594                 // Place copy #1 of I1D1 in I1D7
22595                 //
22596                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
22597                 sub4node->SetLineColor(kColorITS);
22598                 sub4node->SetVisibility(0);
22599                 sub4node->cd();             
22600                    //
22601                    // Place copy #1 of ITS2 in I1D1
22602                    //
22603                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
22604                    sub5node->SetLineColor(kColorITS);                   
22605                    //fNodes->Add(sub5node);
22606                    sub4node->cd();   
22607                 //fNodes->Add(sub4node);  
22608              sub3node->cd(); 
22609              //fNodes->Add(sub3node);
22610              sub2node->cd(); 
22611              //
22612              // Place copy #3 of I1D7 in I20B
22613              //
22614              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-3.536,"");
22615              sub3node->SetLineColor(kColorITS);
22616              sub3node->SetVisibility(0);
22617              sub3node->cd();
22618                 //
22619                 // Place copy #1 of I1D1 in I1D7
22620                 //
22621                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
22622                 sub4node->SetLineColor(kColorITS);
22623                 sub4node->SetVisibility(0);
22624                 sub4node->cd();             
22625                    //
22626                    // Place copy #1 of ITS2 in I1D1
22627                    //
22628                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
22629                    sub5node->SetLineColor(kColorITS);                   
22630                    //fNodes->Add(sub5node);
22631                    sub4node->cd();   
22632                 //fNodes->Add(sub4node);  
22633              sub3node->cd(); 
22634              //fNodes->Add(sub3node);
22635              sub2node->cd(); 
22636              //
22637              // Place copy #4 of I1D7 in I20B
22638              //
22639              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-10.708,"");
22640              sub3node->SetLineColor(kColorITS);
22641              sub3node->SetVisibility(0);
22642              sub3node->cd();
22643                 //
22644                 // Place copy #1 of I1D1 in I1D7
22645                 //
22646                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
22647                 sub4node->SetLineColor(kColorITS);
22648                 sub4node->SetVisibility(0);
22649                 sub4node->cd();             
22650                    //
22651                    // Place copy #1 of ITS2 in I1D1
22652                    //
22653                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
22654                    sub5node->SetLineColor(kColorITS);                   
22655                    //fNodes->Add(sub5node);
22656                    sub4node->cd();   
22657                 //fNodes->Add(sub4node);  
22658              sub3node->cd(); 
22659              //fNodes->Add(sub3node);
22660              sub2node->cd(); 
22661           //fNodes->Add(sub2node);      
22662           sub1node->cd(); 
22663           //
22664           // Place copy #3 of I20B in I12B
22665           //
22666           deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(58.*TMath::Pi()/180.);  
22667           deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(58.*TMath::Pi()/180.);
22668           sub2node = new TNode("I20B","I20B","I20B",0.8567+deltax,7.1279+deltay,0.,"rot242");
22669           sub2node->SetLineColor(kColorITS);
22670           sub2node->SetVisibility(0);
22671           sub2node->cd();
22672              //
22673              // Place copy #1 of I1D7 in I20B
22674              //
22675              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],10.708,"");
22676              sub3node->SetLineColor(kColorITS);
22677              sub3node->SetVisibility(0);
22678              sub3node->cd();
22679                 //
22680                 // Place copy #1 of I1D1 in I1D7
22681                 //
22682                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
22683                 sub4node->SetLineColor(kColorITS);
22684                 sub4node->SetVisibility(0);
22685                 sub4node->cd();
22686                    //               
22687                    // Place copy #1 of ITS2 in I1D1
22688                    //
22689                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
22690                    sub5node->SetLineColor(kColorITS);                   
22691                    //fNodes->Add(sub5node);
22692                    sub4node->cd();   
22693                 //fNodes->Add(sub4node);  
22694              sub3node->cd(); 
22695              //fNodes->Add(sub3node);
22696              sub2node->cd(); 
22697              //
22698              // Place copy #2 of I1D7 in I20B
22699              //
22700              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],3.536,"");
22701              sub3node->SetLineColor(kColorITS);
22702              sub3node->SetVisibility(0);
22703              sub3node->cd();
22704                 //
22705                 // Place copy #1 of I1D1 in I1D7
22706                 //
22707                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
22708                 sub4node->SetLineColor(kColorITS);
22709                 sub4node->SetVisibility(0);
22710                 sub4node->cd();             
22711                    //
22712                    // Place copy #1 of ITS2 in I1D1
22713                    //
22714                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
22715                    sub5node->SetLineColor(kColorITS);                   
22716                    //fNodes->Add(sub5node);
22717                    sub4node->cd();   
22718                 //fNodes->Add(sub4node);  
22719              sub3node->cd(); 
22720              //fNodes->Add(sub3node);
22721              sub2node->cd(); 
22722              //
22723              // Place copy #3 of I1D7 in I20B
22724              //
22725              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-3.536,"");
22726              sub3node->SetLineColor(kColorITS);
22727              sub3node->SetVisibility(0);
22728              sub3node->cd();
22729                 //
22730                 // Place copy #1 of I1D1 in I1D7
22731                 //
22732                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
22733                 sub4node->SetLineColor(kColorITS);
22734                 sub4node->SetVisibility(0);
22735                 sub4node->cd();             
22736                    //
22737                    // Place copy #1 of ITS2 in I1D1
22738                    //
22739                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
22740                    sub5node->SetLineColor(kColorITS);                   
22741                    //fNodes->Add(sub5node);
22742                    sub4node->cd();   
22743                 //fNodes->Add(sub4node);  
22744              sub3node->cd(); 
22745              //fNodes->Add(sub3node);
22746              sub2node->cd(); 
22747              //
22748              // Place copy #4 of I1D7 in I20B
22749              //
22750              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-10.708,"");
22751              sub3node->SetLineColor(kColorITS);
22752              sub3node->SetVisibility(0);
22753              sub3node->cd();
22754                 //
22755                 // Place copy #1 of I1D1 in I1D7
22756                 //
22757                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
22758                 sub4node->SetLineColor(kColorITS);
22759                 sub4node->SetVisibility(0);
22760                 sub4node->cd();             
22761                    //
22762                    // Place copy #1 of ITS2 in I1D1
22763                    //
22764                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
22765                    sub5node->SetLineColor(kColorITS);                   
22766                    //fNodes->Add(sub5node);
22767                    sub4node->cd();   
22768                 //fNodes->Add(sub4node);  
22769              sub3node->cd(); 
22770              //fNodes->Add(sub3node);
22771              sub2node->cd(); 
22772           //fNodes->Add(sub2node);      
22773           sub1node->cd(); 
22774           //
22775           // Place copy #4 of I20B in I12B
22776           //
22777           deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(67.*TMath::Pi()/180.);  
22778           deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(67.*TMath::Pi()/180.);
22779           sub2node = new TNode("I20B","I20B","I20B",-0.2689+deltax,7.1742+deltay,0.,"rot243");
22780           sub2node->SetLineColor(kColorITS);
22781           sub2node->SetVisibility(0);
22782           sub2node->cd();
22783              //
22784              // Place copy #1 of I1D7 in I20B
22785              //
22786              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],10.708,"");
22787              sub3node->SetLineColor(kColorITS);
22788              sub3node->SetVisibility(0);
22789              sub3node->cd();
22790                 //
22791                 // Place copy #1 of I1D1 in I1D7
22792                 //
22793                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
22794                 sub4node->SetLineColor(kColorITS);
22795                 sub4node->SetVisibility(0);
22796                 sub4node->cd();
22797                    //               
22798                    // Place copy #1 of ITS2 in I1D1
22799                    //
22800                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
22801                    sub5node->SetLineColor(kColorITS);                   
22802                    //fNodes->Add(sub5node);
22803                    sub4node->cd();   
22804                 //fNodes->Add(sub4node);  
22805              sub3node->cd(); 
22806              //fNodes->Add(sub3node);
22807              sub2node->cd(); 
22808              //
22809              // Place copy #2 of I1D7 in I20B
22810              //
22811              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],3.536,"");
22812              sub3node->SetLineColor(kColorITS);
22813              sub3node->SetVisibility(0);
22814              sub3node->cd();
22815                 //
22816                 // Place copy #1 of I1D1 in I1D7
22817                 //
22818                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
22819                 sub4node->SetLineColor(kColorITS);
22820                 sub4node->SetVisibility(0);
22821                 sub4node->cd();             
22822                    //
22823                    // Place copy #1 of ITS2 in I1D1
22824                    //
22825                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
22826                    sub5node->SetLineColor(kColorITS);                   
22827                    //fNodes->Add(sub5node);
22828                    sub4node->cd();   
22829                 //fNodes->Add(sub4node);  
22830              sub3node->cd(); 
22831              //fNodes->Add(sub3node);
22832              sub2node->cd(); 
22833              //
22834              // Place copy #3 of I1D7 in I20B
22835              //
22836              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-3.536,"");
22837              sub3node->SetLineColor(kColorITS);
22838              sub3node->SetVisibility(0);
22839              sub3node->cd();
22840                 //
22841                 // Place copy #1 of I1D1 in I1D7
22842                 //
22843                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
22844                 sub4node->SetLineColor(kColorITS);
22845                 sub4node->SetVisibility(0);
22846                 sub4node->cd();             
22847                    //
22848                    // Place copy #1 of ITS2 in I1D1
22849                    //
22850                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
22851                    sub5node->SetLineColor(kColorITS);                   
22852                    //fNodes->Add(sub5node);
22853                    sub4node->cd();   
22854                 //fNodes->Add(sub4node);  
22855              sub3node->cd(); 
22856              //fNodes->Add(sub3node);
22857              sub2node->cd(); 
22858              //
22859              // Place copy #4 of I1D7 in I20B
22860              //
22861              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-10.708,"");
22862              sub3node->SetLineColor(kColorITS);
22863              sub3node->SetVisibility(0);
22864              sub3node->cd();
22865                 //
22866                 // Place copy #1 of I1D1 in I1D7
22867                 //
22868                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
22869                 sub4node->SetLineColor(kColorITS);
22870                 sub4node->SetVisibility(0);
22871                 sub4node->cd();             
22872                    //
22873                    // Place copy #1 of ITS2 in I1D1
22874                    //
22875                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
22876                    sub5node->SetLineColor(kColorITS);                   
22877                    //fNodes->Add(sub5node);
22878                    sub4node->cd();   
22879                 //fNodes->Add(sub4node);  
22880              sub3node->cd(); 
22881              //fNodes->Add(sub3node);
22882              sub2node->cd(); 
22883           //fNodes->Add(sub2node);      
22884           sub1node->cd(); 
22885        //fNodes->Add(sub1node);
22886        node->cd(); 
22887        //
22888        // Place copy #9 of I12B in IT12
22889        //
22890        sub1node = new TNode("I12B","I12B","I12B",0.,0.,0.,"rot248");
22891        sub1node->SetLineColor(kColorITS);
22892        sub1node->SetVisibility(0);
22893        sub1node->cd();    
22894           //
22895           // Place copy #1 of I10B in I12B
22896           //
22897           deltax=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Cos(252.*TMath::Pi()/180.);  
22898           deltay=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Sin(252.*TMath::Pi()/180.);
22899           sub2node = new TNode("I10B","I10B","I10B",1.4531+deltax,3.8152+deltay,0.,"rot239");
22900           sub2node->SetLineColor(kColorITS);
22901           sub2node->SetVisibility(0);
22902           sub2node->cd();
22903              //
22904              // Place copy #1 of I107 in I10B
22905              //
22906              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],10.708,"");
22907              sub3node->SetLineColor(kColorITS);
22908              sub3node->SetVisibility(0);
22909              sub3node->cd();
22910                 //
22911                 // Place copy #1 of I101 in I107
22912                 //
22913                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
22914                 sub4node->SetLineColor(kColorITS);
22915                 sub4node->SetVisibility(0);
22916                 sub4node->cd();
22917                    //               
22918                    // Place copy #1 of ITS1 in I101
22919                    //
22920                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
22921                    sub5node->SetLineColor(kColorITS);                   
22922                    //fNodes->Add(sub5node);
22923                    sub4node->cd();   
22924                 //fNodes->Add(sub4node);  
22925              sub3node->cd(); 
22926              //fNodes->Add(sub3node);
22927              sub2node->cd(); 
22928              //
22929              // Place copy #2 of I107 in I10B
22930              //
22931              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],3.536,"");
22932              sub3node->SetLineColor(kColorITS);
22933              sub3node->SetVisibility(0);
22934              sub3node->cd();
22935                 //
22936                 // Place copy #1 of I101 in I107
22937                 //
22938                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
22939                 sub4node->SetLineColor(kColorITS);
22940                 sub4node->SetVisibility(0);
22941                 sub4node->cd();             
22942                    //
22943                    // Place copy #1 of ITS1 in I101
22944                    //
22945                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
22946                    sub5node->SetLineColor(kColorITS);                   
22947                    //fNodes->Add(sub5node);
22948                    sub4node->cd();   
22949                 //fNodes->Add(sub4node);  
22950              sub3node->cd(); 
22951              //fNodes->Add(sub3node);
22952              sub2node->cd(); 
22953              //
22954              // Place copy #3 of I107 in I10B
22955              //
22956              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],-3.536,"");
22957              sub3node->SetLineColor(kColorITS);
22958              sub3node->SetVisibility(0);
22959              sub3node->cd();
22960                 //
22961                 // Place copy #1 of I101 in I107
22962                 //
22963                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
22964                 sub4node->SetLineColor(kColorITS);
22965                 sub4node->SetVisibility(0);
22966                 sub4node->cd();             
22967                    //
22968                    // Place copy #1 of ITS1 in I101
22969                    //
22970                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
22971                    sub5node->SetLineColor(kColorITS);                   
22972                    //fNodes->Add(sub5node);
22973                    sub4node->cd();   
22974                 //fNodes->Add(sub4node);  
22975              sub3node->cd(); 
22976              //fNodes->Add(sub3node);
22977              sub2node->cd(); 
22978              //
22979              // Place copy #4 of I107 in I10B
22980              //
22981              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],-10.708,"");
22982              sub3node->SetLineColor(kColorITS);
22983              sub3node->SetVisibility(0);
22984              sub3node->cd();
22985                 //
22986                 // Place copy #1 of I101 in I107
22987                 //
22988                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
22989                 sub4node->SetLineColor(kColorITS);
22990                 sub4node->SetVisibility(0);
22991                 sub4node->cd();             
22992                    //
22993                    // Place copy #1 of ITS1 in I101
22994                    //
22995                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
22996                    sub5node->SetLineColor(kColorITS);                   
22997                    //fNodes->Add(sub5node);
22998                    sub4node->cd();   
22999                 //fNodes->Add(sub4node);  
23000              sub3node->cd(); 
23001              //fNodes->Add(sub3node);
23002              sub2node->cd(); 
23003           //fNodes->Add(sub2node);      
23004           sub1node->cd(); 
23005           //
23006           // Place copy #2 of I10B in I12B
23007           //
23008           deltax=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Cos(270.*TMath::Pi()/180.);  
23009           deltay=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Sin(270.*TMath::Pi()/180.);
23010           sub2node = new TNode("I10B","I10B","I10B",0.203+deltax,3.8206+deltay,0.,"rot238");
23011           sub2node->SetLineColor(kColorITS);
23012           sub2node->SetVisibility(0);
23013           sub2node->cd();
23014              //
23015              // Place copy #1 of I107 in I10B
23016              //
23017              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],10.708,"");
23018              sub3node->SetLineColor(kColorITS);
23019              sub3node->SetVisibility(0);
23020              sub3node->cd();
23021                 //
23022                 // Place copy #1 of I101 in I107
23023                 //
23024                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
23025                 sub4node->SetLineColor(kColorITS);
23026                 sub4node->SetVisibility(0);
23027                 sub4node->cd();
23028                    //               
23029                    // Place copy #1 of ITS1 in I101
23030                    //
23031                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
23032                    sub5node->SetLineColor(kColorITS);                   
23033                    //fNodes->Add(sub5node);
23034                    sub4node->cd();   
23035                 //fNodes->Add(sub4node);  
23036              sub3node->cd(); 
23037              //fNodes->Add(sub3node);
23038              sub2node->cd(); 
23039              //
23040              // Place copy #2 of I107 in I10B
23041              //
23042              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],3.536,"");
23043              sub3node->SetLineColor(kColorITS);
23044              sub3node->SetVisibility(0);
23045              sub3node->cd();
23046                 //
23047                 // Place copy #1 of I101 in I107
23048                 //
23049                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
23050                 sub4node->SetLineColor(kColorITS);
23051                 sub4node->SetVisibility(0);
23052                 sub4node->cd();             
23053                    //
23054                    // Place copy #1 of ITS1 in I101
23055                    //
23056                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
23057                    sub5node->SetLineColor(kColorITS);                   
23058                    //fNodes->Add(sub5node);
23059                    sub4node->cd();   
23060                 //fNodes->Add(sub4node);  
23061              sub3node->cd(); 
23062              //fNodes->Add(sub3node);
23063              sub2node->cd(); 
23064              //
23065              // Place copy #3 of I107 in I10B
23066              //
23067              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],-3.536,"");
23068              sub3node->SetLineColor(kColorITS);
23069              sub3node->SetVisibility(0);
23070              sub3node->cd();
23071                 //
23072                 // Place copy #1 of I101 in I107
23073                 //
23074                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
23075                 sub4node->SetLineColor(kColorITS);
23076                 sub4node->SetVisibility(0);
23077                 sub4node->cd();             
23078                    //
23079                    // Place copy #1 of ITS1 in I101
23080                    //
23081                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
23082                    sub5node->SetLineColor(kColorITS);                   
23083                    //fNodes->Add(sub5node);
23084                    sub4node->cd();   
23085                 //fNodes->Add(sub4node);  
23086              sub3node->cd(); 
23087              //fNodes->Add(sub3node);
23088              sub2node->cd(); 
23089              //
23090              // Place copy #4 of I107 in I10B
23091              //
23092              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],-10.708,"");
23093              sub3node->SetLineColor(kColorITS);
23094              sub3node->SetVisibility(0);
23095              sub3node->cd();
23096                 //
23097                 // Place copy #1 of I101 in I107
23098                 //
23099                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
23100                 sub4node->SetLineColor(kColorITS);
23101                 sub4node->SetVisibility(0);
23102                 sub4node->cd();             
23103                    //
23104                    // Place copy #1 of ITS1 in I101
23105                    //
23106                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
23107                    sub5node->SetLineColor(kColorITS);                   
23108                    //fNodes->Add(sub5node);
23109                    sub4node->cd();   
23110                 //fNodes->Add(sub4node);  
23111              sub3node->cd(); 
23112              //fNodes->Add(sub3node);
23113              sub2node->cd(); 
23114           //fNodes->Add(sub2node);      
23115           sub1node->cd(); 
23116           //
23117           // Place copy #1 of I20B in I12B
23118           //
23119           deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(40.*TMath::Pi()/180.);  
23120           deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(40.*TMath::Pi()/180.);
23121           sub2node = new TNode("I20B","I20B","I20B",3.0174+deltax,6.5143+deltay,0.,"rot240");
23122           sub2node->SetLineColor(kColorITS);
23123           sub2node->SetVisibility(0);
23124           sub2node->cd();
23125              //
23126              // Place copy #1 of I1D7 in I20B
23127              //
23128              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],10.708,"");
23129              sub3node->SetLineColor(kColorITS);
23130              sub3node->SetVisibility(0);
23131              sub3node->cd();
23132                 //
23133                 // Place copy #1 of I1D1 in I1D7
23134                 //
23135                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
23136                 sub4node->SetLineColor(kColorITS);
23137                 sub4node->SetVisibility(0);
23138                 sub4node->cd();
23139                    //               
23140                    // Place copy #1 of ITS2 in I1D1
23141                    //
23142                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
23143                    sub5node->SetLineColor(kColorITS);                   
23144                    //fNodes->Add(sub5node);
23145                    sub4node->cd();   
23146                 //fNodes->Add(sub4node);  
23147              sub3node->cd(); 
23148              //fNodes->Add(sub3node);
23149              sub2node->cd(); 
23150              //
23151              // Place copy #2 of I1D7 in I20B
23152              //
23153              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],3.536,"");
23154              sub3node->SetLineColor(kColorITS);
23155              sub3node->SetVisibility(0);
23156              sub3node->cd();
23157                 //
23158                 // Place copy #1 of I1D1 in I1D7
23159                 //
23160                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
23161                 sub4node->SetLineColor(kColorITS);
23162                 sub4node->SetVisibility(0);
23163                 sub4node->cd();             
23164                    //
23165                    // Place copy #1 of ITS2 in I1D1
23166                    //
23167                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
23168                    sub5node->SetLineColor(kColorITS);                   
23169                    //fNodes->Add(sub5node);
23170                    sub4node->cd();   
23171                 //fNodes->Add(sub4node);  
23172              sub3node->cd(); 
23173              //fNodes->Add(sub3node);
23174              sub2node->cd(); 
23175              //
23176              // Place copy #3 of I1D7 in I20B
23177              //
23178              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-3.536,"");
23179              sub3node->SetLineColor(kColorITS);
23180              sub3node->SetVisibility(0);
23181              sub3node->cd();
23182                 //
23183                 // Place copy #1 of I1D1 in I1D7
23184                 //
23185                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
23186                 sub4node->SetLineColor(kColorITS);
23187                 sub4node->SetVisibility(0);
23188                 sub4node->cd();             
23189                    //
23190                    // Place copy #1 of ITS2 in I1D1
23191                    //
23192                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
23193                    sub5node->SetLineColor(kColorITS);                   
23194                    //fNodes->Add(sub5node);
23195                    sub4node->cd();   
23196                 //fNodes->Add(sub4node);  
23197              sub3node->cd(); 
23198              //fNodes->Add(sub3node);
23199              sub2node->cd(); 
23200              //
23201              // Place copy #4 of I1D7 in I20B
23202              //
23203              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-10.708,"");
23204              sub3node->SetLineColor(kColorITS);
23205              sub3node->SetVisibility(0);
23206              sub3node->cd();
23207                 //
23208                 // Place copy #1 of I1D1 in I1D7
23209                 //
23210                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
23211                 sub4node->SetLineColor(kColorITS);
23212                 sub4node->SetVisibility(0);
23213                 sub4node->cd();             
23214                    //
23215                    // Place copy #1 of ITS2 in I1D1
23216                    //
23217                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
23218                    sub5node->SetLineColor(kColorITS);                   
23219                    //fNodes->Add(sub5node);
23220                    sub4node->cd();   
23221                 //fNodes->Add(sub4node);  
23222              sub3node->cd(); 
23223              //fNodes->Add(sub3node);
23224              sub2node->cd(); 
23225           //fNodes->Add(sub2node);      
23226           sub1node->cd(); 
23227           //
23228           // Place copy #2 of I20B in I12B
23229           //
23230           deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(49.*TMath::Pi()/180.);  
23231           deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(49.*TMath::Pi()/180.);
23232           sub2node = new TNode("I20B","I20B","I20B",1.9612+deltax,6.9062+deltay,0.,"rot241");
23233           sub2node->SetLineColor(kColorITS);
23234           sub2node->SetVisibility(0);
23235           sub2node->cd();
23236              //
23237              // Place copy #1 of I1D7 in I20B
23238              //
23239              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],10.708,"");
23240              sub3node->SetLineColor(kColorITS);
23241              sub3node->SetVisibility(0);
23242              sub3node->cd();
23243                 //
23244                 // Place copy #1 of I1D1 in I1D7
23245                 //
23246                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
23247                 sub4node->SetLineColor(kColorITS);
23248                 sub4node->SetVisibility(0);
23249                 sub4node->cd();
23250                    //               
23251                    // Place copy #1 of ITS2 in I1D1
23252                    //
23253                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
23254                    sub5node->SetLineColor(kColorITS);                   
23255                    //fNodes->Add(sub5node);
23256                    sub4node->cd();   
23257                 //fNodes->Add(sub4node);  
23258              sub3node->cd(); 
23259              //fNodes->Add(sub3node);
23260              sub2node->cd(); 
23261              //
23262              // Place copy #2 of I1D7 in I20B
23263              //
23264              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],3.536,"");
23265              sub3node->SetLineColor(kColorITS);
23266              sub3node->SetVisibility(0);
23267              sub3node->cd();
23268                 //
23269                 // Place copy #1 of I1D1 in I1D7
23270                 //
23271                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
23272                 sub4node->SetLineColor(kColorITS);
23273                 sub4node->SetVisibility(0);
23274                 sub4node->cd();             
23275                    //
23276                    // Place copy #1 of ITS2 in I1D1
23277                    //
23278                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
23279                    sub5node->SetLineColor(kColorITS);                   
23280                    //fNodes->Add(sub5node);
23281                    sub4node->cd();   
23282                 //fNodes->Add(sub4node);  
23283              sub3node->cd(); 
23284              //fNodes->Add(sub3node);
23285              sub2node->cd(); 
23286              //
23287              // Place copy #3 of I1D7 in I20B
23288              //
23289              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-3.536,"");
23290              sub3node->SetLineColor(kColorITS);
23291              sub3node->SetVisibility(0);
23292              sub3node->cd();
23293                 //
23294                 // Place copy #1 of I1D1 in I1D7
23295                 //
23296                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
23297                 sub4node->SetLineColor(kColorITS);
23298                 sub4node->SetVisibility(0);
23299                 sub4node->cd();             
23300                    //
23301                    // Place copy #1 of ITS2 in I1D1
23302                    //
23303                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
23304                    sub5node->SetLineColor(kColorITS);                   
23305                    //fNodes->Add(sub5node);
23306                    sub4node->cd();   
23307                 //fNodes->Add(sub4node);  
23308              sub3node->cd(); 
23309              //fNodes->Add(sub3node);
23310              sub2node->cd(); 
23311              //
23312              // Place copy #4 of I1D7 in I20B
23313              //
23314              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-10.708,"");
23315              sub3node->SetLineColor(kColorITS);
23316              sub3node->SetVisibility(0);
23317              sub3node->cd();
23318                 //
23319                 // Place copy #1 of I1D1 in I1D7
23320                 //
23321                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
23322                 sub4node->SetLineColor(kColorITS);
23323                 sub4node->SetVisibility(0);
23324                 sub4node->cd();             
23325                    //
23326                    // Place copy #1 of ITS2 in I1D1
23327                    //
23328                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
23329                    sub5node->SetLineColor(kColorITS);                   
23330                    //fNodes->Add(sub5node);
23331                    sub4node->cd();   
23332                 //fNodes->Add(sub4node);  
23333              sub3node->cd(); 
23334              //fNodes->Add(sub3node);
23335              sub2node->cd(); 
23336           //fNodes->Add(sub2node);      
23337           sub1node->cd(); 
23338           //
23339           // Place copy #3 of I20B in I12B
23340           //
23341           deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(58.*TMath::Pi()/180.);  
23342           deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(58.*TMath::Pi()/180.);
23343           sub2node = new TNode("I20B","I20B","I20B",0.8567+deltax,7.1279+deltay,0.,"rot242");
23344           sub2node->SetLineColor(kColorITS);
23345           sub2node->SetVisibility(0);
23346           sub2node->cd();
23347              //
23348              // Place copy #1 of I1D7 in I20B
23349              //
23350              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],10.708,"");
23351              sub3node->SetLineColor(kColorITS);
23352              sub3node->SetVisibility(0);
23353              sub3node->cd();
23354                 //
23355                 // Place copy #1 of I1D1 in I1D7
23356                 //
23357                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
23358                 sub4node->SetLineColor(kColorITS);
23359                 sub4node->SetVisibility(0);
23360                 sub4node->cd();
23361                    //               
23362                    // Place copy #1 of ITS2 in I1D1
23363                    //
23364                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
23365                    sub5node->SetLineColor(kColorITS);                   
23366                    //fNodes->Add(sub5node);
23367                    sub4node->cd();   
23368                 //fNodes->Add(sub4node);  
23369              sub3node->cd(); 
23370              //fNodes->Add(sub3node);
23371              sub2node->cd(); 
23372              //
23373              // Place copy #2 of I1D7 in I20B
23374              //
23375              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],3.536,"");
23376              sub3node->SetLineColor(kColorITS);
23377              sub3node->SetVisibility(0);
23378              sub3node->cd();
23379                 //
23380                 // Place copy #1 of I1D1 in I1D7
23381                 //
23382                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
23383                 sub4node->SetLineColor(kColorITS);
23384                 sub4node->SetVisibility(0);
23385                 sub4node->cd();             
23386                    //
23387                    // Place copy #1 of ITS2 in I1D1
23388                    //
23389                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
23390                    sub5node->SetLineColor(kColorITS);                   
23391                    //fNodes->Add(sub5node);
23392                    sub4node->cd();   
23393                 //fNodes->Add(sub4node);  
23394              sub3node->cd(); 
23395              //fNodes->Add(sub3node);
23396              sub2node->cd(); 
23397              //
23398              // Place copy #3 of I1D7 in I20B
23399              //
23400              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-3.536,"");
23401              sub3node->SetLineColor(kColorITS);
23402              sub3node->SetVisibility(0);
23403              sub3node->cd();
23404                 //
23405                 // Place copy #1 of I1D1 in I1D7
23406                 //
23407                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
23408                 sub4node->SetLineColor(kColorITS);
23409                 sub4node->SetVisibility(0);
23410                 sub4node->cd();             
23411                    //
23412                    // Place copy #1 of ITS2 in I1D1
23413                    //
23414                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
23415                    sub5node->SetLineColor(kColorITS);                   
23416                    //fNodes->Add(sub5node);
23417                    sub4node->cd();   
23418                 //fNodes->Add(sub4node);  
23419              sub3node->cd(); 
23420              //fNodes->Add(sub3node);
23421              sub2node->cd(); 
23422              //
23423              // Place copy #4 of I1D7 in I20B
23424              //
23425              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-10.708,"");
23426              sub3node->SetLineColor(kColorITS);
23427              sub3node->SetVisibility(0);
23428              sub3node->cd();
23429                 //
23430                 // Place copy #1 of I1D1 in I1D7
23431                 //
23432                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
23433                 sub4node->SetLineColor(kColorITS);
23434                 sub4node->SetVisibility(0);
23435                 sub4node->cd();             
23436                    //
23437                    // Place copy #1 of ITS2 in I1D1
23438                    //
23439                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
23440                    sub5node->SetLineColor(kColorITS);                   
23441                    //fNodes->Add(sub5node);
23442                    sub4node->cd();   
23443                 //fNodes->Add(sub4node);  
23444              sub3node->cd(); 
23445              //fNodes->Add(sub3node);
23446              sub2node->cd(); 
23447           //fNodes->Add(sub2node);      
23448           sub1node->cd(); 
23449           //
23450           // Place copy #4 of I20B in I12B
23451           //
23452           deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(67.*TMath::Pi()/180.);  
23453           deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(67.*TMath::Pi()/180.);
23454           sub2node = new TNode("I20B","I20B","I20B",-0.2689+deltax,7.1742+deltay,0.,"rot243");
23455           sub2node->SetLineColor(kColorITS);
23456           sub2node->SetVisibility(0);
23457           sub2node->cd();
23458              //
23459              // Place copy #1 of I1D7 in I20B
23460              //
23461              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],10.708,"");
23462              sub3node->SetLineColor(kColorITS);
23463              sub3node->SetVisibility(0);
23464              sub3node->cd();
23465                 //
23466                 // Place copy #1 of I1D1 in I1D7
23467                 //
23468                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
23469                 sub4node->SetLineColor(kColorITS);
23470                 sub4node->SetVisibility(0);
23471                 sub4node->cd();
23472                    //               
23473                    // Place copy #1 of ITS2 in I1D1
23474                    //
23475                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
23476                    sub5node->SetLineColor(kColorITS);                   
23477                    //fNodes->Add(sub5node);
23478                    sub4node->cd();   
23479                 //fNodes->Add(sub4node);  
23480              sub3node->cd(); 
23481              //fNodes->Add(sub3node);
23482              sub2node->cd(); 
23483              //
23484              // Place copy #2 of I1D7 in I20B
23485              //
23486              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],3.536,"");
23487              sub3node->SetLineColor(kColorITS);
23488              sub3node->SetVisibility(0);
23489              sub3node->cd();
23490                 //
23491                 // Place copy #1 of I1D1 in I1D7
23492                 //
23493                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
23494                 sub4node->SetLineColor(kColorITS);
23495                 sub4node->SetVisibility(0);
23496                 sub4node->cd();             
23497                    //
23498                    // Place copy #1 of ITS2 in I1D1
23499                    //
23500                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
23501                    sub5node->SetLineColor(kColorITS);                   
23502                    //fNodes->Add(sub5node);
23503                    sub4node->cd();   
23504                 //fNodes->Add(sub4node);  
23505              sub3node->cd(); 
23506              //fNodes->Add(sub3node);
23507              sub2node->cd(); 
23508              //
23509              // Place copy #3 of I1D7 in I20B
23510              //
23511              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-3.536,"");
23512              sub3node->SetLineColor(kColorITS);
23513              sub3node->SetVisibility(0);
23514              sub3node->cd();
23515                 //
23516                 // Place copy #1 of I1D1 in I1D7
23517                 //
23518                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
23519                 sub4node->SetLineColor(kColorITS);
23520                 sub4node->SetVisibility(0);
23521                 sub4node->cd();             
23522                    //
23523                    // Place copy #1 of ITS2 in I1D1
23524                    //
23525                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
23526                    sub5node->SetLineColor(kColorITS);                   
23527                    //fNodes->Add(sub5node);
23528                    sub4node->cd();   
23529                 //fNodes->Add(sub4node);  
23530              sub3node->cd(); 
23531              //fNodes->Add(sub3node);
23532              sub2node->cd(); 
23533              //
23534              // Place copy #4 of I1D7 in I20B
23535              //
23536              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-10.708,"");
23537              sub3node->SetLineColor(kColorITS);
23538              sub3node->SetVisibility(0);
23539              sub3node->cd();
23540                 //
23541                 // Place copy #1 of I1D1 in I1D7
23542                 //
23543                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
23544                 sub4node->SetLineColor(kColorITS);
23545                 sub4node->SetVisibility(0);
23546                 sub4node->cd();             
23547                    //
23548                    // Place copy #1 of ITS2 in I1D1
23549                    //
23550                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
23551                    sub5node->SetLineColor(kColorITS);                   
23552                    //fNodes->Add(sub5node);
23553                    sub4node->cd();   
23554                 //fNodes->Add(sub4node);  
23555              sub3node->cd(); 
23556              //fNodes->Add(sub3node);
23557              sub2node->cd(); 
23558           //fNodes->Add(sub2node);      
23559           sub1node->cd(); 
23560        //fNodes->Add(sub1node);
23561        node->cd(); 
23562        //
23563        // Place copy #10 of I12B in IT12
23564        //
23565        sub1node = new TNode("I12B","I12B","I12B",0.,0.,0.,"rot249");
23566        sub1node->SetLineColor(kColorITS);
23567        sub1node->SetVisibility(0);
23568        sub1node->cd();    
23569           //
23570           // Place copy #1 of I10B in I12B
23571           //
23572           deltax=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Cos(252.*TMath::Pi()/180.);  
23573           deltay=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Sin(252.*TMath::Pi()/180.);
23574           sub2node = new TNode("I10B","I10B","I10B",1.4531+deltax,3.8152+deltay,0.,"rot239");
23575           sub2node->SetLineColor(kColorITS);
23576           sub2node->SetVisibility(0);
23577           sub2node->cd();
23578              //
23579              // Place copy #1 of I107 in I10B
23580              //
23581              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],10.708,"");
23582              sub3node->SetLineColor(kColorITS);
23583              sub3node->SetVisibility(0);
23584              sub3node->cd();
23585                 //
23586                 // Place copy #1 of I101 in I107
23587                 //
23588                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
23589                 sub4node->SetLineColor(kColorITS);
23590                 sub4node->SetVisibility(0);
23591                 sub4node->cd();
23592                    //               
23593                    // Place copy #1 of ITS1 in I101
23594                    //
23595                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
23596                    sub5node->SetLineColor(kColorITS);                   
23597                    //fNodes->Add(sub5node);
23598                    sub4node->cd();   
23599                 //fNodes->Add(sub4node);  
23600              sub3node->cd(); 
23601              //fNodes->Add(sub3node);
23602              sub2node->cd(); 
23603              //
23604              // Place copy #2 of I107 in I10B
23605              //
23606              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],3.536,"");
23607              sub3node->SetLineColor(kColorITS);
23608              sub3node->SetVisibility(0);
23609              sub3node->cd();
23610                 //
23611                 // Place copy #1 of I101 in I107
23612                 //
23613                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
23614                 sub4node->SetLineColor(kColorITS);
23615                 sub4node->SetVisibility(0);
23616                 sub4node->cd();             
23617                    //
23618                    // Place copy #1 of ITS1 in I101
23619                    //
23620                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
23621                    sub5node->SetLineColor(kColorITS);                   
23622                    //fNodes->Add(sub5node);
23623                    sub4node->cd();   
23624                 //fNodes->Add(sub4node);  
23625              sub3node->cd(); 
23626              //fNodes->Add(sub3node);
23627              sub2node->cd(); 
23628              //
23629              // Place copy #3 of I107 in I10B
23630              //
23631              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],-3.536,"");
23632              sub3node->SetLineColor(kColorITS);
23633              sub3node->SetVisibility(0);
23634              sub3node->cd();
23635                 //
23636                 // Place copy #1 of I101 in I107
23637                 //
23638                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
23639                 sub4node->SetLineColor(kColorITS);
23640                 sub4node->SetVisibility(0);
23641                 sub4node->cd();             
23642                    //
23643                    // Place copy #1 of ITS1 in I101
23644                    //
23645                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
23646                    sub5node->SetLineColor(kColorITS);                   
23647                    //fNodes->Add(sub5node);
23648                    sub4node->cd();   
23649                 //fNodes->Add(sub4node);  
23650              sub3node->cd(); 
23651              //fNodes->Add(sub3node);
23652              sub2node->cd(); 
23653              //
23654              // Place copy #4 of I107 in I10B
23655              //
23656              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],-10.708,"");
23657              sub3node->SetLineColor(kColorITS);
23658              sub3node->SetVisibility(0);
23659              sub3node->cd();
23660                 //
23661                 // Place copy #1 of I101 in I107
23662                 //
23663                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
23664                 sub4node->SetLineColor(kColorITS);
23665                 sub4node->SetVisibility(0);
23666                 sub4node->cd();             
23667                    //
23668                    // Place copy #1 of ITS1 in I101
23669                    //
23670                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
23671                    sub5node->SetLineColor(kColorITS);                   
23672                    //fNodes->Add(sub5node);
23673                    sub4node->cd();   
23674                 //fNodes->Add(sub4node);  
23675              sub3node->cd(); 
23676              //fNodes->Add(sub3node);
23677              sub2node->cd(); 
23678           //fNodes->Add(sub2node);      
23679           sub1node->cd(); 
23680           //
23681           // Place copy #2 of I10B in I12B
23682           //
23683           deltax=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Cos(270.*TMath::Pi()/180.);  
23684           deltay=((ddet1-0.01/2.)+(dchip1-0.015/2.))*TMath::Sin(270.*TMath::Pi()/180.);
23685           sub2node = new TNode("I10B","I10B","I10B",0.203+deltax,3.8206+deltay,0.,"rot238");
23686           sub2node->SetLineColor(kColorITS);
23687           sub2node->SetVisibility(0);
23688           sub2node->cd();
23689              //
23690              // Place copy #1 of I107 in I10B
23691              //
23692              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],10.708,"");
23693              sub3node->SetLineColor(kColorITS);
23694              sub3node->SetVisibility(0);
23695              sub3node->cd();
23696                 //
23697                 // Place copy #1 of I101 in I107
23698                 //
23699                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
23700                 sub4node->SetLineColor(kColorITS);
23701                 sub4node->SetVisibility(0);
23702                 sub4node->cd();
23703                    //               
23704                    // Place copy #1 of ITS1 in I101
23705                    //
23706                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
23707                    sub5node->SetLineColor(kColorITS);                   
23708                    //fNodes->Add(sub5node);
23709                    sub4node->cd();   
23710                 //fNodes->Add(sub4node);  
23711              sub3node->cd(); 
23712              //fNodes->Add(sub3node);
23713              sub2node->cd(); 
23714              //
23715              // Place copy #2 of I107 in I10B
23716              //
23717              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],3.536,"");
23718              sub3node->SetLineColor(kColorITS);
23719              sub3node->SetVisibility(0);
23720              sub3node->cd();
23721                 //
23722                 // Place copy #1 of I101 in I107
23723                 //
23724                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
23725                 sub4node->SetLineColor(kColorITS);
23726                 sub4node->SetVisibility(0);
23727                 sub4node->cd();             
23728                    //
23729                    // Place copy #1 of ITS1 in I101
23730                    //
23731                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
23732                    sub5node->SetLineColor(kColorITS);                   
23733                    //fNodes->Add(sub5node);
23734                    sub4node->cd();   
23735                 //fNodes->Add(sub4node);  
23736              sub3node->cd(); 
23737              //fNodes->Add(sub3node);
23738              sub2node->cd(); 
23739              //
23740              // Place copy #3 of I107 in I10B
23741              //
23742              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],-3.536,"");
23743              sub3node->SetLineColor(kColorITS);
23744              sub3node->SetVisibility(0);
23745              sub3node->cd();
23746                 //
23747                 // Place copy #1 of I101 in I107
23748                 //
23749                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
23750                 sub4node->SetLineColor(kColorITS);
23751                 sub4node->SetVisibility(0);
23752                 sub4node->cd();             
23753                    //
23754                    // Place copy #1 of ITS1 in I101
23755                    //
23756                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
23757                    sub5node->SetLineColor(kColorITS);                   
23758                    //fNodes->Add(sub5node);
23759                    sub4node->cd();   
23760                 //fNodes->Add(sub4node);  
23761              sub3node->cd(); 
23762              //fNodes->Add(sub3node);
23763              sub2node->cd(); 
23764              //
23765              // Place copy #4 of I107 in I10B
23766              //
23767              sub3node = new TNode("I107","I107","I107",-0.0455,-di10b[1]+di107[1],-10.708,"");
23768              sub3node->SetLineColor(kColorITS);
23769              sub3node->SetVisibility(0);
23770              sub3node->cd();
23771                 //
23772                 // Place copy #1 of I101 in I107
23773                 //
23774                 sub4node = new TNode("I101","I101","I101",0.,ddet1,0.,"");
23775                 sub4node->SetLineColor(kColorITS);
23776                 sub4node->SetVisibility(0);
23777                 sub4node->cd();             
23778                    //
23779                    // Place copy #1 of ITS1 in I101
23780                    //
23781                    sub5node = new TNode("ITS1","ITS1","ITS1",0.,0.,0.,"");
23782                    sub5node->SetLineColor(kColorITS);                   
23783                    //fNodes->Add(sub5node);
23784                    sub4node->cd();   
23785                 //fNodes->Add(sub4node);  
23786              sub3node->cd(); 
23787              //fNodes->Add(sub3node);
23788              sub2node->cd(); 
23789           //fNodes->Add(sub2node);      
23790           sub1node->cd(); 
23791           //
23792           // Place copy #1 of I20B in I12B
23793           //
23794           deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(40.*TMath::Pi()/180.);  
23795           deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(40.*TMath::Pi()/180.);
23796           sub2node = new TNode("I20B","I20B","I20B",3.0174+deltax,6.5143+deltay,0.,"rot240");
23797           sub2node->SetLineColor(kColorITS);
23798           sub2node->SetVisibility(0);
23799           sub2node->cd();
23800              //
23801              // Place copy #1 of I1D7 in I20B
23802              //
23803              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],10.708,"");
23804              sub3node->SetLineColor(kColorITS);
23805              sub3node->SetVisibility(0);
23806              sub3node->cd();
23807                 //
23808                 // Place copy #1 of I1D1 in I1D7
23809                 //
23810                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
23811                 sub4node->SetLineColor(kColorITS);
23812                 sub4node->SetVisibility(0);
23813                 sub4node->cd();
23814                    //               
23815                    // Place copy #1 of ITS2 in I1D1
23816                    //
23817                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
23818                    sub5node->SetLineColor(kColorITS);                   
23819                    //fNodes->Add(sub5node);
23820                    sub4node->cd();   
23821                 //fNodes->Add(sub4node);  
23822              sub3node->cd(); 
23823              //fNodes->Add(sub3node);
23824              sub2node->cd(); 
23825              //
23826              // Place copy #2 of I1D7 in I20B
23827              //
23828              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],3.536,"");
23829              sub3node->SetLineColor(kColorITS);
23830              sub3node->SetVisibility(0);
23831              sub3node->cd();
23832                 //
23833                 // Place copy #1 of I1D1 in I1D7
23834                 //
23835                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
23836                 sub4node->SetLineColor(kColorITS);
23837                 sub4node->SetVisibility(0);
23838                 sub4node->cd();             
23839                    //
23840                    // Place copy #1 of ITS2 in I1D1
23841                    //
23842                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
23843                    sub5node->SetLineColor(kColorITS);                   
23844                    //fNodes->Add(sub5node);
23845                    sub4node->cd();   
23846                 //fNodes->Add(sub4node);  
23847              sub3node->cd(); 
23848              //fNodes->Add(sub3node);
23849              sub2node->cd(); 
23850              //
23851              // Place copy #3 of I1D7 in I20B
23852              //
23853              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-3.536,"");
23854              sub3node->SetLineColor(kColorITS);
23855              sub3node->SetVisibility(0);
23856              sub3node->cd();
23857                 //
23858                 // Place copy #1 of I1D1 in I1D7
23859                 //
23860                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
23861                 sub4node->SetLineColor(kColorITS);
23862                 sub4node->SetVisibility(0);
23863                 sub4node->cd();             
23864                    //
23865                    // Place copy #1 of ITS2 in I1D1
23866                    //
23867                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
23868                    sub5node->SetLineColor(kColorITS);                   
23869                    //fNodes->Add(sub5node);
23870                    sub4node->cd();   
23871                 //fNodes->Add(sub4node);  
23872              sub3node->cd(); 
23873              //fNodes->Add(sub3node);
23874              sub2node->cd(); 
23875              //
23876              // Place copy #4 of I1D7 in I20B
23877              //
23878              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-10.708,"");
23879              sub3node->SetLineColor(kColorITS);
23880              sub3node->SetVisibility(0);
23881              sub3node->cd();
23882                 //
23883                 // Place copy #1 of I1D1 in I1D7
23884                 //
23885                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
23886                 sub4node->SetLineColor(kColorITS);
23887                 sub4node->SetVisibility(0);
23888                 sub4node->cd();             
23889                    //
23890                    // Place copy #1 of ITS2 in I1D1
23891                    //
23892                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
23893                    sub5node->SetLineColor(kColorITS);                   
23894                    //fNodes->Add(sub5node);
23895                    sub4node->cd();   
23896                 //fNodes->Add(sub4node);  
23897              sub3node->cd(); 
23898              //fNodes->Add(sub3node);
23899              sub2node->cd(); 
23900           //fNodes->Add(sub2node);      
23901           sub1node->cd(); 
23902           //
23903           // Place copy #2 of I20B in I12B
23904           //
23905           deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(49.*TMath::Pi()/180.);  
23906           deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(49.*TMath::Pi()/180.);
23907           sub2node = new TNode("I20B","I20B","I20B",1.9612+deltax,6.9062+deltay,0.,"rot241");
23908           sub2node->SetLineColor(kColorITS);
23909           sub2node->SetVisibility(0);
23910           sub2node->cd();
23911              //
23912              // Place copy #1 of I1D7 in I20B
23913              //
23914              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],10.708,"");
23915              sub3node->SetLineColor(kColorITS);
23916              sub3node->SetVisibility(0);
23917              sub3node->cd();
23918                 //
23919                 // Place copy #1 of I1D1 in I1D7
23920                 //
23921                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
23922                 sub4node->SetLineColor(kColorITS);
23923                 sub4node->SetVisibility(0);
23924                 sub4node->cd();
23925                    //               
23926                    // Place copy #1 of ITS2 in I1D1
23927                    //
23928                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
23929                    sub5node->SetLineColor(kColorITS);                   
23930                    //fNodes->Add(sub5node);
23931                    sub4node->cd();   
23932                 //fNodes->Add(sub4node);  
23933              sub3node->cd(); 
23934              //fNodes->Add(sub3node);
23935              sub2node->cd(); 
23936              //
23937              // Place copy #2 of I1D7 in I20B
23938              //
23939              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],3.536,"");
23940              sub3node->SetLineColor(kColorITS);
23941              sub3node->SetVisibility(0);
23942              sub3node->cd();
23943                 //
23944                 // Place copy #1 of I1D1 in I1D7
23945                 //
23946                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
23947                 sub4node->SetLineColor(kColorITS);
23948                 sub4node->SetVisibility(0);
23949                 sub4node->cd();             
23950                    //
23951                    // Place copy #1 of ITS2 in I1D1
23952                    //
23953                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
23954                    sub5node->SetLineColor(kColorITS);                   
23955                    //fNodes->Add(sub5node);
23956                    sub4node->cd();   
23957                 //fNodes->Add(sub4node);  
23958              sub3node->cd(); 
23959              //fNodes->Add(sub3node);
23960              sub2node->cd(); 
23961              //
23962              // Place copy #3 of I1D7 in I20B
23963              //
23964              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-3.536,"");
23965              sub3node->SetLineColor(kColorITS);
23966              sub3node->SetVisibility(0);
23967              sub3node->cd();
23968                 //
23969                 // Place copy #1 of I1D1 in I1D7
23970                 //
23971                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
23972                 sub4node->SetLineColor(kColorITS);
23973                 sub4node->SetVisibility(0);
23974                 sub4node->cd();             
23975                    //
23976                    // Place copy #1 of ITS2 in I1D1
23977                    //
23978                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
23979                    sub5node->SetLineColor(kColorITS);                   
23980                    //fNodes->Add(sub5node);
23981                    sub4node->cd();   
23982                 //fNodes->Add(sub4node);  
23983              sub3node->cd(); 
23984              //fNodes->Add(sub3node);
23985              sub2node->cd(); 
23986              //
23987              // Place copy #4 of I1D7 in I20B
23988              //
23989              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-10.708,"");
23990              sub3node->SetLineColor(kColorITS);
23991              sub3node->SetVisibility(0);
23992              sub3node->cd();
23993                 //
23994                 // Place copy #1 of I1D1 in I1D7
23995                 //
23996                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
23997                 sub4node->SetLineColor(kColorITS);
23998                 sub4node->SetVisibility(0);
23999                 sub4node->cd();             
24000                    //
24001                    // Place copy #1 of ITS2 in I1D1
24002                    //
24003                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
24004                    sub5node->SetLineColor(kColorITS);                   
24005                    //fNodes->Add(sub5node);
24006                    sub4node->cd();   
24007                 //fNodes->Add(sub4node);  
24008              sub3node->cd(); 
24009              //fNodes->Add(sub3node);
24010              sub2node->cd(); 
24011           //fNodes->Add(sub2node);      
24012           sub1node->cd(); 
24013           //
24014           // Place copy #3 of I20B in I12B
24015           //
24016           deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(58.*TMath::Pi()/180.);  
24017           deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(58.*TMath::Pi()/180.);
24018           sub2node = new TNode("I20B","I20B","I20B",0.8567+deltax,7.1279+deltay,0.,"rot242");
24019           sub2node->SetLineColor(kColorITS);
24020           sub2node->SetVisibility(0);
24021           sub2node->cd();
24022              //
24023              // Place copy #1 of I1D7 in I20B
24024              //
24025              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],10.708,"");
24026              sub3node->SetLineColor(kColorITS);
24027              sub3node->SetVisibility(0);
24028              sub3node->cd();
24029                 //
24030                 // Place copy #1 of I1D1 in I1D7
24031                 //
24032                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
24033                 sub4node->SetLineColor(kColorITS);
24034                 sub4node->SetVisibility(0);
24035                 sub4node->cd();
24036                    //               
24037                    // Place copy #1 of ITS2 in I1D1
24038                    //
24039                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
24040                    sub5node->SetLineColor(kColorITS);                   
24041                    //fNodes->Add(sub5node);
24042                    sub4node->cd();   
24043                 //fNodes->Add(sub4node);  
24044              sub3node->cd(); 
24045              //fNodes->Add(sub3node);
24046              sub2node->cd(); 
24047              //
24048              // Place copy #2 of I1D7 in I20B
24049              //
24050              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],3.536,"");
24051              sub3node->SetLineColor(kColorITS);
24052              sub3node->SetVisibility(0);
24053              sub3node->cd();
24054                 //
24055                 // Place copy #1 of I1D1 in I1D7
24056                 //
24057                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
24058                 sub4node->SetLineColor(kColorITS);
24059                 sub4node->SetVisibility(0);
24060                 sub4node->cd();             
24061                    //
24062                    // Place copy #1 of ITS2 in I1D1
24063                    //
24064                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
24065                    sub5node->SetLineColor(kColorITS);                   
24066                    //fNodes->Add(sub5node);
24067                    sub4node->cd();   
24068                 //fNodes->Add(sub4node);  
24069              sub3node->cd(); 
24070              //fNodes->Add(sub3node);
24071              sub2node->cd(); 
24072              //
24073              // Place copy #3 of I1D7 in I20B
24074              //
24075              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-3.536,"");
24076              sub3node->SetLineColor(kColorITS);
24077              sub3node->SetVisibility(0);
24078              sub3node->cd();
24079                 //
24080                 // Place copy #1 of I1D1 in I1D7
24081                 //
24082                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
24083                 sub4node->SetLineColor(kColorITS);
24084                 sub4node->SetVisibility(0);
24085                 sub4node->cd();             
24086                    //
24087                    // Place copy #1 of ITS2 in I1D1
24088                    //
24089                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
24090                    sub5node->SetLineColor(kColorITS);                   
24091                    //fNodes->Add(sub5node);
24092                    sub4node->cd();   
24093                 //fNodes->Add(sub4node);  
24094              sub3node->cd(); 
24095              //fNodes->Add(sub3node);
24096              sub2node->cd(); 
24097              //
24098              // Place copy #4 of I1D7 in I20B
24099              //
24100              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-10.708,"");
24101              sub3node->SetLineColor(kColorITS);
24102              sub3node->SetVisibility(0);
24103              sub3node->cd();
24104                 //
24105                 // Place copy #1 of I1D1 in I1D7
24106                 //
24107                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
24108                 sub4node->SetLineColor(kColorITS);
24109                 sub4node->SetVisibility(0);
24110                 sub4node->cd();             
24111                    //
24112                    // Place copy #1 of ITS2 in I1D1
24113                    //
24114                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
24115                    sub5node->SetLineColor(kColorITS);                   
24116                    //fNodes->Add(sub5node);
24117                    sub4node->cd();   
24118                 //fNodes->Add(sub4node);  
24119              sub3node->cd(); 
24120              //fNodes->Add(sub3node);
24121              sub2node->cd(); 
24122           //fNodes->Add(sub2node);      
24123           sub1node->cd(); 
24124           //
24125           // Place copy #4 of I20B in I12B
24126           //
24127           deltax=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Cos(67.*TMath::Pi()/180.);  
24128           deltay=((ddet2-0.01/2.)+(dchip2-0.015/2.))*TMath::Sin(67.*TMath::Pi()/180.);
24129           sub2node = new TNode("I20B","I20B","I20B",-0.2689+deltax,7.1742+deltay,0.,"rot243");
24130           sub2node->SetLineColor(kColorITS);
24131           sub2node->SetVisibility(0);
24132           sub2node->cd();
24133              //
24134              // Place copy #1 of I1D7 in I20B
24135              //
24136              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],10.708,"");
24137              sub3node->SetLineColor(kColorITS);
24138              sub3node->SetVisibility(0);
24139              sub3node->cd();
24140                 //
24141                 // Place copy #1 of I1D1 in I1D7
24142                 //
24143                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
24144                 sub4node->SetLineColor(kColorITS);
24145                 sub4node->SetVisibility(0);
24146                 sub4node->cd();
24147                    //               
24148                    // Place copy #1 of ITS2 in I1D1
24149                    //
24150                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
24151                    sub5node->SetLineColor(kColorITS);                   
24152                    //fNodes->Add(sub5node);
24153                    sub4node->cd();   
24154                 //fNodes->Add(sub4node);  
24155              sub3node->cd(); 
24156              //fNodes->Add(sub3node);
24157              sub2node->cd(); 
24158              //
24159              // Place copy #2 of I1D7 in I20B
24160              //
24161              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],3.536,"");
24162              sub3node->SetLineColor(kColorITS);
24163              sub3node->SetVisibility(0);
24164              sub3node->cd();
24165                 //
24166                 // Place copy #1 of I1D1 in I1D7
24167                 //
24168                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
24169                 sub4node->SetLineColor(kColorITS);
24170                 sub4node->SetVisibility(0);
24171                 sub4node->cd();             
24172                    //
24173                    // Place copy #1 of ITS2 in I1D1
24174                    //
24175                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
24176                    sub5node->SetLineColor(kColorITS);                   
24177                    //fNodes->Add(sub5node);
24178                    sub4node->cd();   
24179                 //fNodes->Add(sub4node);  
24180              sub3node->cd(); 
24181              //fNodes->Add(sub3node);
24182              sub2node->cd(); 
24183              //
24184              // Place copy #3 of I1D7 in I20B
24185              //
24186              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-3.536,"");
24187              sub3node->SetLineColor(kColorITS);
24188              sub3node->SetVisibility(0);
24189              sub3node->cd();
24190                 //
24191                 // Place copy #1 of I1D1 in I1D7
24192                 //
24193                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
24194                 sub4node->SetLineColor(kColorITS);
24195                 sub4node->SetVisibility(0);
24196                 sub4node->cd();             
24197                    //
24198                    // Place copy #1 of ITS2 in I1D1
24199                    //
24200                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
24201                    sub5node->SetLineColor(kColorITS);                   
24202                    //fNodes->Add(sub5node);
24203                    sub4node->cd();   
24204                 //fNodes->Add(sub4node);  
24205              sub3node->cd(); 
24206              //fNodes->Add(sub3node);
24207              sub2node->cd(); 
24208              //
24209              // Place copy #4 of I1D7 in I20B
24210              //
24211              sub3node = new TNode("I1D7","I1D7","I1D7",-0.0455,-di20b[1]+di1d7[1],-10.708,"");
24212              sub3node->SetLineColor(kColorITS);
24213              sub3node->SetVisibility(0);
24214              sub3node->cd();
24215                 //
24216                 // Place copy #1 of I1D1 in I1D7
24217                 //
24218                 sub4node = new TNode("I1D1","I1D1","I1D1",0.,ddet2,0.,"");
24219                 sub4node->SetLineColor(kColorITS);
24220                 sub4node->SetVisibility(0);
24221                 sub4node->cd();             
24222                    //
24223                    // Place copy #1 of ITS2 in I1D1
24224                    //
24225                    sub5node = new TNode("ITS2","ITS2","ITS2",0.,0.,0.,"");
24226                    sub5node->SetLineColor(kColorITS);                   
24227                    //fNodes->Add(sub5node);
24228                    sub4node->cd();   
24229                 //fNodes->Add(sub4node);  
24230              sub3node->cd(); 
24231              //fNodes->Add(sub3node);
24232              sub2node->cd(); 
24233           //fNodes->Add(sub2node);      
24234           sub1node->cd(); 
24235        //fNodes->Add(sub1node);
24236        node->cd(); 
24237        
24238     //fNodes->Add(node)
24239     
24240     //node->Draw("SAME");
24241     //c1->Update();
24242
24243   } 
24244                   
24245         // Gets Tree of RecPoints...
24246         TTree *TR = gAlice->TreeR();
24247         if (!TR) {
24248                 cout << "A problem occurred when getting the TreeR!!!" << endl;
24249                 return;
24250         }
24251         AliITSRecPoint *recp=0; 
24252         TClonesArray  *recPoints = ITS->RecPoints();
24253
24254         // Gets found tracks...
24255        const char *filename="itstracks.root";   
24256        TFile *file = (TFile*)gROOT->GetListOfFiles()->FindObject(filename);
24257        if (!file) file = new TFile(filename);
24258
24259        char tname[30];   
24260
24261 //  get tracks from ITSiotrack.root
24262   Int_t nev=0;  
24263   sprintf(tname,"TreeT%d",nev);
24264    TTree *tracktree=(TTree*)file->Get(tname);
24265    TBranch *tbranch=tracktree->GetBranch("ITStracks");
24266    //cout<<" nev = "<<nev<<"\n";   
24267    //cout<<" open the file \n"; 
24268         
24269    Int_t nentry=tracktree->GetEntries();
24270         
24271     Float_t idpoint[6],idmodule[6]; 
24272
24273    TObjArray tarray(nentry);
24274    printf("Found tracks = %d\n",nentry);
24275         
24276    for (Int_t i=0; i<nentry; i++) {
24277       AliITSIOTrack *iotrack=new AliITSIOTrack;
24278        tbranch->SetAddress(&iotrack);
24279        tracktree->GetEvent(i);
24280         tarray.AddLast(iotrack);
24281    }             
24282         
24283
24284           AliITSIOTrack *iotrack;
24285           Float_t global[3], local[3];  
24286           Float_t idpoint[6], idmodule[6]; 
24287           Float_t xp[7], yp[7], zp[7];  
24288           Float_t pxtr, pytr, pztr;
24289           Float_t x0tr, y0tr, z0tr;                
24290    for (Int_t i=0; i<nentry; i++) {
24291      AliITSIOTrack *iotrack=new AliITSIOTrack;          
24292          iotrack=(AliITSIOTrack*)tarray.UncheckedAt(i);
24293          if(!iotrack) continue;
24294      Int_t labITS=iotrack->GetLabel();
24295             pxtr=iotrack->GetPx();   
24296             pytr=iotrack->GetPy();   
24297             pztr=iotrack->GetPz();   
24298             x0tr=iotrack->GetX();   
24299             y0tr=iotrack->GetY();   
24300             z0tr=iotrack->GetZ();           
24301      //cout << labITS << " ok" << endl;
24302     // Int_t labTPC=iotrack->GetTPCLabel();
24303                 xp[0] = xp[1] = xp[2] = xp[3] = xp[4] = xp[5] = xp[6] = 0.0;
24304                 yp[0] = yp[1] = yp[2] = yp[3] = yp[4] = yp[5] = yp[6] = 0.0;
24305                 zp[0] = zp[1] = zp[2] = zp[3] = zp[4] = zp[5] = zp[6] = 0.0;
24306
24307           Int_t np=0;                             
24308
24309
24310           xp[0]=x0tr;
24311           xp[0]=x0tr;
24312           zp[0]=x0tr;
24313           
24314           for(Int_t ipp=0; ipp<6; ipp++){
24315           idpoint[ipp]= iotrack->GetIdPoint(ipp);
24316           idmodule[ipp] = iotrack->GetIdModule(ipp);
24317           //cout << idmodule[ipp] << " " << idpoint[ipp] << endl;
24318          if(idmodule[ipp]>=0){  
24319          ITS->ResetRecPoints();          
24320     gAlice->TreeR()->GetEvent(idmodule[ipp]); 
24321      Int_t npoints=recPoints->GetEntries();     
24322          recp =(AliITSRecPoint*)recPoints->UncheckedAt(idpoint[ipp]);
24323           local[0]=recp->GetX();
24324           local[1]=0.;
24325           local[2]= recp->GetZ();
24326           //if(i==32) cout<<" local ="<<local[0]<<" "<<local[1]<<" "<<local[2]<<"\n";
24327       gm->LtoG(Int_t(idmodule[ipp]),local,global);
24328           //if(i==32) cout<<" global ="<<global[0]<<" "<<global[1]<<" "<<global[2]<<"\n";               
24329                 xp[np+1]=global[0];
24330                 yp[np+1]=global[1];
24331                 zp[np+1]=global[2];
24332            np++;                        
24333           }                       
24334           }
24335           
24336           
24337                 
24338                 TPolyLine3D *plxy = new TPolyLine3D(np+1, xp, yp, zp);
24339                 plxy->SetLineColor(kBlack);
24340
24341                 c1_1->cd(); 
24342                 plxy->Draw();
24343
24344                 
24345                 c1_2->cd(); 
24346                 plxy->Draw();
24347
24348                 
24349                 c1_3->cd(); 
24350                 plxy->Draw();
24351
24352                 
24353                 c1_4->cd(); 
24354                 plxy->Draw();
24355
24356                 c1->Update();
24357                 
24358                                 
24359                 //cout<<" i  np = "<<i<<"  "<<np<<"\n";getchar();
24360                 /*
24361                 TPolyLine *plxz = new TPolyLine(6, x, z);
24362                 plxz->SetLineColor(kRed);
24363                 plxz->Draw();
24364                 cxz->Update();                    
24365       */
24366           }
24367
24368
24369
24370
24371 }
24372