]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
AddAlignableVolumes added
authorbnandi <bnandi@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 18 Oct 2006 18:10:42 +0000 (18:10 +0000)
committerbnandi <bnandi@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 18 Oct 2006 18:10:42 +0000 (18:10 +0000)
PMD/AliPMDv1.cxx

index e15e3fc1202cba2c98d680786ed3bd9a39ce0df2..9b33defb27dcd4b56db71e47ed5c15ee1f29f649 100644 (file)
@@ -1657,4 +1657,36 @@ void AliPMDv1::GetParameters()
 
   
 }
 
   
 }
+// ---------------------------------------------------------------
+void AliPMDv1::AddAlignableVolumes() const
+{
+  //
+  // Create entries for alignable volumes associating the symbolic volume
+  // name with the corresponding volume path. Needs to be syncronized with
+  // eventual changes in the geometry.
+  // 
+  SetSectorAlignable();
+
+}
+// ----------------------------------------------------------------
+void AliPMDv1::SetSectorAlignable() const
+{
+  //
+
+  TString vpsector = "ALIC_1/EPM";
+  TString vpappend = "_1";
+
+  TString snsector="PMD/Sector";
 
 
+  TString volpath, symname;
+  
+  for(Int_t cnt=1; cnt<=4; cnt++){
+    volpath = vpsector;
+    volpath += cnt;
+    volpath += vpappend;
+    symname = snsector;
+    symname += cnt;
+    gGeoManager->SetAlignableEntry(symname.Data(),volpath.Data());
+  }
+}
+// ------------------------------------------------------------------