]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/mapping/AliMpFiles.h
- Added read/write of global crate file
[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();
0b121e9e 43 static TString BusPatchLengthFilePath();
4df2ac68 44
0025a53e 45 // de names
46 //
cddd101e 47 static TString DENamesFilePath(AliMp::StationType stationType);
0025a53e 48
7f54909e 49 // trigger
50 //
51 static TString LocalTriggerBoardMapping();
52
53 // slats
54 //
cddd101e 55 static TString SlatFilePath(AliMp::StationType stationType,
56 const char* slatType, AliMp::PlaneType plane);
57 static TString SlatPCBFilePath(AliMp::StationType stationType,
7f54909e 58 const char* pcbType);
59 // sectors
60 //
cddd101e 61 static TString SectorFilePath(AliMp::StationType station,
62 AliMp::PlaneType plane);
63 static TString SectorSpecialFilePath(AliMp::StationType station,
64 AliMp::PlaneType plane);
65 static TString SectorSpecialFilePath2(AliMp::StationType station,
66 AliMp::PlaneType plane);
7f54909e 67 // motifs
68 //
cddd101e 69 static TString MotifFilePath(AliMp::StationType station,
70 AliMp::PlaneType plane,
7f54909e 71 const TString& motifTypeID);
82915841 72 static TString MotifFileName(const TString& motifTypeID);
cddd101e 73 static TString MotifSpecialFilePath(AliMp::StationType station,
74 AliMp::PlaneType plane, const TString& motifID);
82915841 75 static TString MotifSpecialFileName(const TString& motifID);
cddd101e 76 static TString PadPosFilePath(AliMp::StationType station,
77 AliMp::PlaneType plane, const TString& motifTypeID);
82915841 78 static TString PadPosFileName(const TString& motifTypeID);
79
cddd101e 80 static TString BergToGCFilePath(AliMp::StationType station);
ec5079b1 81
cddd101e 82 static TString ManuToSerialPath(const TString& deName, AliMp::StationType station);
ec5079b1 83
7f54909e 84
5f91c9e8 85 // set methods
7f54909e 86 static void SetTopPath(const TString& topPath);
87
13e7956b 88 private:
f5671fc3 89 /// Not implemented
7f54909e 90 AliMpFiles();
f5671fc3 91 /// Not implemented
5f91c9e8 92 AliMpFiles(const AliMpFiles& right);
f5671fc3 93 /// Not implemented
5f91c9e8 94 AliMpFiles& operator=(const AliMpFiles& right);
f5671fc3 95
5f91c9e8 96 // methods
d9100e8b 97 static TString GetTop();
cddd101e 98 static TString PlaneDataDir(AliMp::StationType station, AliMp::PlaneType plane);
99 static TString StationDataDir(AliMp::StationType station);
5f91c9e8 100
101 // static data members
829425a5 102 static const TString fgkDataDir; ///< data directory
103 static const TString fgkStationDir; ///< station directory
104 static const TString fgkBendingDir; ///< bending plane directory
105 static const TString fgkNonBendingDir; ///< non-bending plane directory
106 static const TString fgkDENames; ///< DE names data file name
107 static const TString fgkSector; ///< sector data file name
108 static const TString fgkSectorSpecial; ///< sector special data file name
109 static const TString fgkSectorSpecial2;///< sector special data file name
110 static const TString fgkMotifPrefix; ///< motif data file name
111 static const TString fgkMotifSpecialPrefix; ///< special motif data file name
67f410f1 112 static const TString fgkManuToSerialDir;///< manu to serial file directory
ec5079b1 113 static const TString fgkManuToSerial; ///< manu to serial file name suffix
829425a5 114 static const TString fgkPadPosPrefix; ///< pad position data file name
115 static const TString fgkDataExt; ///< file extension
5e53b756 116 static const TString fgkBergToGCFileName; ///< BergToGC mapping file name
829425a5 117 static const TString fgkTriggerLocalBoards;///< local board name to id mapping
118 static const TString fgkBusPatchFileName; ///< DetElemIdToBusPatch file name
0b121e9e 119 static const TString fgkBusPatchLengthFileName;///< BusPatch length file name
5f91c9e8 120
7f54909e 121 ClassDef(AliMpFiles, 0) //File names and paths
5f91c9e8 122};
123
be2a6782 124#endif //ALI_MP_FILES_H