]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
New manager class for definition of detection element types;
authorivana <ivana@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 11 Jan 2006 09:00:44 +0000 (09:00 +0000)
committerivana <ivana@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 11 Jan 2006 09:00:44 +0000 (09:00 +0000)
provides various info about detection elements
(name, type, plane type, station type, validity of deId etc.)

MUON/mapping/AliMpDEManager.cxx [new file with mode: 0644]
MUON/mapping/AliMpDEManager.h [new file with mode: 0644]

diff --git a/MUON/mapping/AliMpDEManager.cxx b/MUON/mapping/AliMpDEManager.cxx
new file mode 100644 (file)
index 0000000..cacd5d4
--- /dev/null
@@ -0,0 +1,368 @@
+/**************************************************************************
+ * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
+ *                                                                        *
+ * Author: The ALICE Off-line Project.                                    *
+ * Contributors are mentioned in the code where appropriate.              *
+ *                                                                        *
+ * Permission to use, copy, modify and distribute this software and its   *
+ * documentation strictly for non-commercial purposes is hereby granted   *
+ * without fee, provided that the above copyright notice appears in all   *
+ * copies and that both the copyright notice and this permission notice   *
+ * appear in the supporting documentation. The authors make no claims     *
+ * about the suitability of this software for any purpose. It is          *
+ * provided "as is" without express or implied warranty.                  *
+ **************************************************************************/
+
+// $Id$
+// $MpId: AliMpDEManager.cxx,v 1.1 2006/01/11 10:24:44 ivana Exp $
+// Category: management
+//
+// Class AliMpDEManager
+// --------------------
+// The manager class for definition of detection element types
+// Authors: Ivana Hrivnacova, IPN Orsay
+//          Laurent Aphecetche, SUBATECH Nantes
+
+#include "AliMpDEManager.h"
+#include "AliMpConstants.h"
+#include "AliMpFiles.h"
+
+#include "AliLog.h"
+
+#include <Riostream.h>
+#include <TSystem.h>
+#include <TObjString.h>
+#include <TMap.h>
+
+ClassImp(AliMpDEManager)
+
+const char  AliMpDEManager::fgkNameSeparator = '_'; 
+const char  AliMpDEManager::fgkCommentPrefix = '#'; 
+const Int_t AliMpDEManager::fgkCoefficient = 100;
+AliMpExMap  AliMpDEManager::fgDENamesMap = AliMpExMap(true);
+
+//______________________________________________________________________________
+AliMpDEManager::AliMpDEManager()
+    : TObject()
+{  
+/// Protected default/standard constructor
+}
+
+//______________________________________________________________________________
+AliMpDEManager::AliMpDEManager(const AliMpDEManager& rhs)
+ : TObject(rhs)
+{
+/// Protected copy constructor
+
+  AliFatal("Not implemented.");
+}
+
+//______________________________________________________________________________
+
+AliMpDEManager::~AliMpDEManager()
+{
+/// Destructor
+}
+
+//______________________________________________________________________________
+AliMpDEManager&  AliMpDEManager::operator=(const AliMpDEManager& rhs)
+{
+/// Protected assignement operator
+
+  if (this == &rhs) return *this;
+
+  AliFatal("Not implemented.");
+    
+  return *this;  
+}    
+          
+//
+// static private methods
+//
+
+//______________________________________________________________________________
+Bool_t AliMpDEManager::IsPlaneType(const TString& planeTypeName)
+{
+/// Return true if the planeTypeName corresponds to a valid plane type
+
+  if ( planeTypeName == PlaneTypeName(kBendingPlane) ||
+       planeTypeName == PlaneTypeName(kNonBendingPlane) ) 
+    return true;   
+
+  return false;
+}  
+
+//______________________________________________________________________________
+AliMpPlaneType AliMpDEManager::PlaneType(const TString& planeTypeName)
+{
+/// Return plane type for the given planeTypeName                            \n
+/// Fatal error if planeTypeName is wrong 
+
+  if ( planeTypeName == PlaneTypeName(kBendingPlane) ) 
+    return kBendingPlane;
+
+  if ( planeTypeName == PlaneTypeName(kNonBendingPlane) ) 
+    return kNonBendingPlane;
+
+  // Should never reach this line
+  AliFatalClass(Form("No plane type defined for %s", planeTypeName.Data()));
+  return kBendingPlane;
+}       
+
+//______________________________________________________________________________
+AliMpStationType AliMpDEManager::StationType(const TString& stationTypeName)
+{
+/// Return station type for the given stationTypeName                        \n
+/// Fatal error if stationTypeName is wrong 
+
+  if ( stationTypeName == StationTypeName(kStation1) )
+    return kStation1;
+
+  if ( stationTypeName == StationTypeName(kStation2) )
+    return kStation2;
+
+  if ( stationTypeName == StationTypeName(kStation345) )
+    return kStation345;
+
+  if ( stationTypeName == StationTypeName(kStationTrigger) ) 
+    return kStationTrigger;
+
+  // Should never reach this line
+  AliFatalClass(Form("No station type defined for ", stationTypeName.Data()));
+  return kStation1;
+}
+
+//______________________________________________________________________________
+Bool_t
+AliMpDEManager::ReadDENames(AliMpStationType station)
+{ 
+/// Read det element names for cath = 0 from the file specified by name
+/// and fill the map 
+
+  // Open file
+  TString filePath = AliMpFiles::DENamesFilePath(station);
+  std::ifstream in(filePath);
+  if (!in.good()) {
+    AliErrorClassStream() << "Cannot open file " << filePath << endl;;
+    return false;
+  }
+  
+  // Read plane types per cathods
+  //
+  char line[80];
+  TString word;
+  TString cathName1, cathName2;
+  in >> word;
+  while ( ! in.eof() && cathName1.Length() == 0 ) {
+    if ( word[0] == '#' ) 
+      in.getline(line, 80);
+    else { 
+      cathName1 = word;
+      in >> cathName2;
+    }
+    in >> word;
+  }
+  
+  Bool_t isCathNameDefined = false;
+  if ( IsPlaneType(cathName1) &&  IsPlaneType(cathName2) )
+    isCathNameDefined = true;
+    
+  // Read DE names
+  //
+  Int_t detElemId;
+  TString name1, name2;
+  while ( ! in.eof() ) {
+    if ( word[0] == '#' ) 
+      in.getline(line, 80);
+    else {  
+      detElemId = word.Atoi();
+      in >> name1;
+      if ( ! isCathNameDefined ) 
+        in >> name2;
+      else {
+        name1 += fgkNameSeparator;
+       name2 = name1;
+        name1 += cathName1;
+        name2 += cathName2;
+      }   
+
+      if ( ! fgDENamesMap.GetValue(detElemId) ) {
+        AliDebugClassStream(1)  
+         << "Adding  "  << detElemId << "  " << name1 << "  " << name2 << endl;
+       fgDENamesMap.Add(detElemId, 
+                        new TPair(new TObjString(name1), new TObjString(name2)));
+      } 
+    } 
+    in >> word;
+  }
+
+  // Close file
+  in.close();
+  
+  return true;
+}
+
+//______________________________________________________________________________
+void AliMpDEManager::FillDENames()
+{
+/// Fill DE names from files
+
+  Bool_t result1 = ReadDENames(kStation1);
+  Bool_t result2 = ReadDENames(kStation2);
+  Bool_t result3 = ReadDENames(kStation345);
+  Bool_t result4 = ReadDENames(kStationTrigger);
+  
+  Bool_t result = result1 && result2 && result3 && result4;
+  if ( ! result ) {
+    AliErrorClassStream() << "Error in reading DE names files" << endl;
+  }  
+}
+
+//
+// static public methods
+//
+
+//______________________________________________________________________________
+Bool_t AliMpDEManager::IsValidDetElemId(Int_t detElemId, Bool_t warn)
+{
+/// Return true if detElemId is valid
+/// (is present in the DE names files)
+
+  if ( fgDENamesMap.GetSize() == 0 ) FillDENames();
+
+  if ( fgDENamesMap.GetValue(detElemId) ) return true;
+
+  if (warn) {
+    AliErrorClassStream() 
+        << "Detection element " << detElemId << " not defined." << endl;
+  }    
+  return false;
+}    
+
+//______________________________________________________________________________
+Bool_t AliMpDEManager::IsValidCathod(Int_t cath, Bool_t warn)
+{
+/// Return true if cath is 0 or 1 
+/// (Better solution would be to use systematically enum)
+
+  if (cath == 0 || cath == 1 ) return true;  
+
+  if (warn)
+    AliErrorClassStream() << "Wrong cathod number " << cath << endl;
+     
+  return false;
+}    
+
+
+//______________________________________________________________________________
+Bool_t AliMpDEManager::IsValid(Int_t detElemId, Int_t cath, Bool_t warn)
+{
+/// Return true if both detElemId and cathod number are valid
+
+  return ( IsValidDetElemId(detElemId, warn) && IsValidCathod(cath, warn) );
+}    
+
+//______________________________________________________________________________
+Bool_t AliMpDEManager::IsValidModuleId(Int_t moduleId, Bool_t warn)
+{
+/// Return true if moduleId is valid
+
+  if ( moduleId >= 0 && moduleId < AliMpConstants::NCh() ) 
+    return true;
+  if (warn) 
+    AliErrorClassStream() << "Wrong module Id " << moduleId << endl;
+  
+  return false;
+}    
+
+//______________________________________________________________________________
+TString AliMpDEManager::GetDEName(Int_t detElemId, Int_t cath, Bool_t warn)
+{
+/// Return det element type name
+
+  if ( ! IsValid(detElemId, cath, warn) ) return "undefined";
+
+  TPair* namePair = (TPair*)fgDENamesMap.GetValue(detElemId);
+
+  if (cath == 0) return ((TObjString*)namePair->Key())->GetString();
+  if (cath == 1) return ((TObjString*)namePair->Value())->GetString();
+  
+  return "undefined";
+}    
+
+//______________________________________________________________________________
+TString AliMpDEManager::GetDETypeName(Int_t detElemId, Int_t cath, Bool_t warn) 
+{
+/// Return det element type name
+
+  TString fullName = GetDEName(detElemId, cath, warn);  
+  
+  // cut plane type extension
+  Ssiz_t pos = fullName.First(fgkNameSeparator);
+  return fullName(0,pos);
+}    
+
+//______________________________________________________________________________
+Int_t  AliMpDEManager::GetModuleId(Int_t detElemId, Bool_t warn)
+{
+/// Return module Id for given detElemId
+
+  if ( ! IsValidDetElemId(detElemId, warn) ) return -1;
+  
+  return detElemId/fgkCoefficient - 1;
+}  
+
+//______________________________________________________________________________
+AliMpPlaneType  AliMpDEManager::GetPlaneType(Int_t detElemId, Int_t cath)
+{
+/// Return plane type                                                      \n
+/// Failure causes Fatal error - as AliMpPlaneType has no possibility
+/// to return undefined value
+
+  if ( ! IsValid(detElemId, cath, true) ) {
+    AliFatalClass("Cannot return AliMpPlaneType value.");
+    return kBendingPlane;
+  }  
+
+  TPair* namePair = (TPair*)fgDENamesMap.GetValue(detElemId);
+
+  TString fullName;  
+  if (cath == 0) fullName = ((TObjString*)namePair->Key())->GetString();
+  if (cath == 1) fullName = ((TObjString*)namePair->Value())->GetString();
+  
+  // Get plane type name
+  Ssiz_t pos = fullName.First(fgkNameSeparator);
+  TString planeTypeName = fullName(pos+1,fullName.Length()-pos);
+  
+  return PlaneType(planeTypeName);
+}    
+
+//______________________________________________________________________________
+AliMpStationType AliMpDEManager::GetStationType(Int_t detElemId)
+{
+/// Return station type                                                      \n
+/// Failure causes Fatal error - as AliMpStationType has no possibility
+/// to return undefined value
+
+  if ( ! IsValidDetElemId(detElemId, true) ) {
+    AliFatalClass("Cannot return AliMpStationType value.");
+    return kStation1;
+  }  
+  
+  Int_t moduleId = GetModuleId(detElemId, false);
+  if ( ! IsValidModuleId(moduleId, true) ) {
+    AliFatalClass("Cannot return AliMpStationType value.");
+    return kStation1;
+  }  
+  
+  if ( moduleId ==  0 || moduleId ==  1 )  return kStation1;
+  if ( moduleId ==  2 || moduleId ==  3 )  return kStation2;
+  if ( moduleId >=  4 && moduleId <=  9 )  return kStation345;
+  if ( moduleId >= 10 && moduleId <= 13 )  return kStationTrigger;
+
+  // Should never get to this line
+  AliFatalClass("Cannot return AliMpStationType value.");
+  return kStation1;
+}
+
diff --git a/MUON/mapping/AliMpDEManager.h b/MUON/mapping/AliMpDEManager.h
new file mode 100644 (file)
index 0000000..de9f48e
--- /dev/null
@@ -0,0 +1,88 @@
+/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
+ * See cxx source for full Copyright notice                               */
+
+/* $Id$ */
+
+/// \ingroup management
+/// \class AliMpDEManager
+/// \brief The manager class for definition of detection element types
+//
+/// The detection element types are defined via unique names
+/// in denames.dat file for each station in the mapping data.
+/// Detection element name is composed of DETypeName and planeTypeName.
+/// DETypeName is only one per station in case of station1 and 2 quadrants, 
+/// there are more DETypes in case of slat and trigger stations. 
+///
+/// Authors: Ivana Hrivnacova, IPN Orsay
+///          Laurent Aphecetche, SUBATECH Nantes
+
+#ifndef ALI_MP_DE_MANAGER_H
+#define ALI_MP_DE_MANAGER_H
+
+#include "AliMpExMap.h"
+#include "AliMpPlaneType.h"
+#include "AliMpStationType.h"
+
+#include <TObject.h>
+
+class AliMpVSegmentation;
+
+class AliMpDEManager : public  TObject {
+
+  public:
+    virtual ~AliMpDEManager();
+    
+    // methods
+    static Bool_t IsValidDetElemId(Int_t detElemId, Bool_t warn = false);
+    static Bool_t IsValidCathod(Int_t cath, Bool_t warn = false);
+    static Bool_t IsValid(Int_t detElemId, Int_t cath, Bool_t warn = false);
+    static Bool_t IsValidModuleId(Int_t moduleId, Bool_t warn = false);
+
+    static TString GetDEName(Int_t detElemId, Int_t cath, Bool_t warn = true);
+    static TString GetDETypeName(Int_t detElemId, Int_t cath, Bool_t warn = true);
+    static Int_t   GetModuleId(Int_t detElemId, Bool_t warn = true);    
+    static AliMpPlaneType   GetPlaneType(Int_t detElemId, Int_t cath);
+    static AliMpStationType GetStationType(Int_t detElemId);
+
+  protected:
+    AliMpDEManager();
+    AliMpDEManager(const AliMpDEManager& rhs);
+    AliMpDEManager& operator=(const AliMpDEManager& rhs);
+
+  private:
+    // methods
+    static Bool_t IsPlaneType(const TString& planeTypeName);
+    static AliMpPlaneType   PlaneType(const TString& planeTypeName);
+    static AliMpStationType StationType(const TString& stationTypeName);
+
+    static Bool_t ReadDENames(AliMpStationType station);
+    static void   FillDENames();
+
+    // static data members     
+    static const char  fgkNameSeparator; // Separator character used in DE names
+    static const char  fgkCommentPrefix; // Comment prefix in DE names file
+    static const Int_t fgkCoefficient;   // Coefficient used in DE Id <-> station
+
+    // data members    
+    static  AliMpExMap fgDENamesMap; // Map between DE Ids and 
+                                     // a pair of DE names for 2 cathods
+
+  ClassDef(AliMpDEManager,0)  // 
+};
+
+#endif //ALI_MP_MANAGER_H
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+