]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Use visibility flags -1 and 3 instead of 0 and 1.
authormorsch <morsch@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 29 Aug 2001 14:28:33 +0000 (14:28 +0000)
committermorsch <morsch@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 29 Aug 2001 14:28:33 +0000 (14:28 +0000)
STEER/AliModule.cxx

index 05528ee86609f678c39d58f348ffcd9ab9d4a7a1..f42e96606f24910e774dd33b05e13b3115959328 100644 (file)
@@ -15,6 +15,9 @@
 
 /*
 $Log$
+Revision 1.16  2001/05/16 14:57:22  alibrary
+New files for folders and Stack
+
 Revision 1.15  2001/03/20 06:36:28  alibrary
 100 parameters now allowed for geant shapes
 
@@ -179,7 +182,7 @@ void AliModule::Disable()
   // Loop through geometry to disable all
   // nodes for this Module
   while((node = (TNode*)next())) {
-    node->SetVisibility(0);
+    node->SetVisibility(-1);
   }   
 }
 
@@ -206,7 +209,7 @@ void AliModule::Enable()
   // Loop through geometry to enable all
   // nodes for this Module
   while((node = (TNode*)next())) {
-    node->SetVisibility(1);
+    node->SetVisibility(3);
   }   
 }