]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/mapping/AliMpFiles.h
Adding CreateIterator(void) and GetNeighbours() pure virtual methods,
[u/mrichter/AliRoot.git] / MUON / mapping / AliMpFiles.h
CommitLineData
dee1d5f1 1/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
2 * See cxx source for full Copyright notice */
3
5f91c9e8 4// $Id$
13985652 5// $MpId: AliMpFiles.h,v 1.10 2006/05/24 13:58:07 ivana Exp $
dee1d5f1 6
7/// \ingroup basic
8/// \class AliMpFiles
9/// \brief Class for generating file names and paths.
10///
11/// The input files:
12/// - zones.dat, zones_special.dat - sector description
13/// - motif*.dat - motif description (generated from Exceed)
14/// - padPos*.dat - pad positions in motif
15///
13985652 16/// \author David Guez, Ivana Hrivnacova; IPN Orsay
5f91c9e8 17
be2a6782 18#ifndef ALI_MP_FILES_H
19#define ALI_MP_FILES_H
5f91c9e8 20
21#include <TObject.h>
5f91c9e8 22
be2a6782 23#include "AliMpStationType.h"
5f91c9e8 24#include "AliMpPlaneType.h"
25
2a7ea2e6 26#include <TString.h>
27
5f91c9e8 28class AliMpFiles : public TObject
29{
30 public:
5f91c9e8 31 // --> protected
7f54909e 32 //AliMpFiles();
5f91c9e8 33 //AliMpFiles(const AliMpFiles& right);
34 virtual ~AliMpFiles();
7f54909e 35
36 //
5f91c9e8 37 // methods
7f54909e 38 //
39
4df2ac68 40 // bus patch
41 //
42 static TString BusPatchFilePath();
43
0025a53e 44 // de names
45 //
cddd101e 46 static TString DENamesFilePath(AliMp::StationType stationType);
0025a53e 47
7f54909e 48 // trigger
49 //
50 static TString LocalTriggerBoardMapping();
51
52 // slats
53 //
cddd101e 54 static TString SlatFilePath(AliMp::StationType stationType,
55 const char* slatType, AliMp::PlaneType plane);
56 static TString SlatPCBFilePath(AliMp::StationType stationType,
7f54909e 57 const char* pcbType);
58 // sectors
59 //
cddd101e 60 static TString SectorFilePath(AliMp::StationType station,
61 AliMp::PlaneType plane);
62 static TString SectorSpecialFilePath(AliMp::StationType station,
63 AliMp::PlaneType plane);
64 static TString SectorSpecialFilePath2(AliMp::StationType station,
65 AliMp::PlaneType plane);
7f54909e 66 // motifs
67 //
cddd101e 68 static TString MotifFilePath(AliMp::StationType station,
69 AliMp::PlaneType plane,
7f54909e 70 const TString& motifTypeID);
82915841 71 static TString MotifFileName(const TString& motifTypeID);
cddd101e 72 static TString MotifSpecialFilePath(AliMp::StationType station,
73 AliMp::PlaneType plane, const TString& motifID);
82915841 74 static TString MotifSpecialFileName(const TString& motifID);
cddd101e 75 static TString PadPosFilePath(AliMp::StationType station,
76 AliMp::PlaneType plane, const TString& motifTypeID);
82915841 77 static TString PadPosFileName(const TString& motifTypeID);
78
cddd101e 79 static TString BergToGCFilePath(AliMp::StationType station);
ec5079b1 80
cddd101e 81 static TString ManuToSerialPath(const TString& deName, AliMp::StationType station);
ec5079b1 82
7f54909e 83
5f91c9e8 84 // set methods
7f54909e 85 static void SetTopPath(const TString& topPath);
86
13e7956b 87 private:
7f54909e 88 AliMpFiles();
5f91c9e8 89 AliMpFiles(const AliMpFiles& right);
7f54909e 90
5f91c9e8 91 // operators
92 AliMpFiles& operator=(const AliMpFiles& right);
5f91c9e8 93 // methods
d9100e8b 94 static TString GetTop();
cddd101e 95 static TString PlaneDataDir(AliMp::StationType station, AliMp::PlaneType plane);
96 static TString StationDataDir(AliMp::StationType station);
5f91c9e8 97
98 // static data members
829425a5 99 static const TString fgkDataDir; ///< data directory
100 static const TString fgkStationDir; ///< station directory
101 static const TString fgkBendingDir; ///< bending plane directory
102 static const TString fgkNonBendingDir; ///< non-bending plane directory
103 static const TString fgkDENames; ///< DE names data file name
104 static const TString fgkSector; ///< sector data file name
105 static const TString fgkSectorSpecial; ///< sector special data file name
106 static const TString fgkSectorSpecial2;///< sector special data file name
107 static const TString fgkMotifPrefix; ///< motif data file name
108 static const TString fgkMotifSpecialPrefix; ///< special motif data file name
67f410f1 109 static const TString fgkManuToSerialDir;///< manu to serial file directory
ec5079b1 110 static const TString fgkManuToSerial; ///< manu to serial file name suffix
829425a5 111 static const TString fgkPadPosPrefix; ///< pad position data file name
112 static const TString fgkDataExt; ///< file extension
5e53b756 113 static const TString fgkBergToGCFileName; ///< BergToGC mapping file name
829425a5 114 static const TString fgkTriggerLocalBoards;///< local board name to id mapping
115 static const TString fgkBusPatchFileName; ///< DetElemIdToBusPatch file name
5f91c9e8 116
7f54909e 117 ClassDef(AliMpFiles, 0) //File names and paths
5f91c9e8 118};
119
be2a6782 120#endif //ALI_MP_FILES_H