]> git.uio.no Git - u/mrichter/AliRoot.git/blame - FMD/AliFMDCalibSampleRate.cxx
Added loop on raw data files
[u/mrichter/AliRoot.git] / FMD / AliFMDCalibSampleRate.cxx
CommitLineData
8f6ee336 1/**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
6 * *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
8f6ee336 15/* $Id$ */
c2fc1258 16/** @file AliFMDCalibSampleRate.cxx
17 @author Christian Holm Christensen <cholm@nbi.dk>
18 @date Sun Mar 26 18:31:09 2006
19 @brief Per digitizer card pulser calibration
20*/
8f6ee336 21//____________________________________________________________________
22//
02a27b50 23// This class stores the sample rate (that is, how many times the
24// ATLRO's sample each VA1 channel). In principle these can be
25// controlled per half ring, but in real life it's most likely that
26// this value will be the same for all detectors. This value must be
27// retrived from DCS or the like.
8f6ee336 28//
29#include "AliFMDCalibSampleRate.h" // ALIFMDCALIBGAIN_H
6169f936 30// #include "AliFMDParameters.h" // ALIFMDPARAMETERS_H
f95a63c4 31// #include <AliLog.h>
bd727bee 32#include "TString.h"
f95a63c4 33#include "AliFMDDebug.h" // Better debug macros
43a19191 34#include "iostream"
8f6ee336 35
36//____________________________________________________________________
37ClassImp(AliFMDCalibSampleRate)
38#if 0
39 ; // This is here to keep Emacs for indenting the next line
40#endif
41
42//____________________________________________________________________
43AliFMDCalibSampleRate::AliFMDCalibSampleRate()
c2fc1258 44 : fRates(AliFMDMap::kMaxDetectors, AliFMDMap::kMaxRings, 2, 1)
45 // fRates(3)
8f6ee336 46{
02a27b50 47 // CTOR
c2fc1258 48 fRates.Reset(1);
8f6ee336 49}
50
51//____________________________________________________________________
52AliFMDCalibSampleRate::AliFMDCalibSampleRate(const AliFMDCalibSampleRate& o)
53 : TObject(o), fRates(o.fRates)
02a27b50 54{
55 // Copy ctor
56}
8f6ee336 57
58//____________________________________________________________________
59AliFMDCalibSampleRate&
60AliFMDCalibSampleRate::operator=(const AliFMDCalibSampleRate& o)
61{
02a27b50 62 // Assignment operator
8f6ee336 63 fRates = o.fRates;
64 return (*this);
65}
66
67//____________________________________________________________________
68void
c2fc1258 69AliFMDCalibSampleRate::Set(UShort_t det, Char_t ring,
70 UShort_t sector, UShort_t, UShort_t rate)
8f6ee336 71{
02a27b50 72 // Set values. Strip argument is ignored
43a19191 73 UInt_t nSec = (ring == 'I' ? 10 : 20);
c2fc1258 74 UInt_t board = sector / nSec;
75 fRates(det, ring, board, 0) = rate;
43a19191 76
8f6ee336 77}
78
79//____________________________________________________________________
80UShort_t
c2fc1258 81AliFMDCalibSampleRate::Rate(UShort_t det, Char_t ring,
82 UShort_t sec, UShort_t) const
8f6ee336 83{
02a27b50 84 // Get the sample rate
43a19191 85 UInt_t nSec = (ring == 'I' ? 10 : 20);
c2fc1258 86 UInt_t board = sec / nSec;
f95a63c4 87 AliFMDDebug(10, ("Getting sample rate for FMD%d%c[%2d,0] (board %d)",
c2fc1258 88 det, ring, sec, board));
89 return fRates(det, ring, board, 0);
8f6ee336 90}
bd727bee 91//____________________________________________________________________
92void
93AliFMDCalibSampleRate::WriteToFile(ofstream &outFile)
94{
95 outFile.write("# SampleRate \n",14);
96 for(Int_t det=1;det<=3;det++) {
97 UShort_t FirstRing = (det == 1 ? 1 : 0);
98 for (UShort_t ir = FirstRing; ir < 2; ir++) {
99 Char_t ring = (ir == 0 ? 'O' : 'I');
8f3f0bec 100 // UShort_t nsec = (ir == 0 ? 40 : 20);
101
102 for(UShort_t board = 0; board < 2; board++) {
103 outFile << det << ','
104 << ring << ','
105 << board << ','
106 << Rate(det,ring,board) << "\n";
bd727bee 107
108
109 }
110 }
111 }
112
113
114}
115//____________________________________________________________________
116void
117AliFMDCalibSampleRate::ReadFromFile(ifstream &inFile)
118{
119 TString line;
120 Bool_t readData=kFALSE;
121
122 while(line.ReadLine(inFile)) {
123 if(line.Contains("samplerate",TString::kIgnoreCase)) {
124 readData = kTRUE;
125 break;
126 }
127
128 }
129
8f3f0bec 130 UShort_t det, board;
bd727bee 131 Char_t ring;
132 UShort_t sampleRate;
133 Int_t thisline = inFile.tellg();
134 Char_t c[3];
135
43a19191 136 while( readData ) {
bd727bee 137 thisline = inFile.tellg();
43a19191 138 line.ReadLine(inFile);
bd727bee 139 if(line.Contains("# ",TString::kIgnoreCase)) {
140 readData = kFALSE;
141 continue;
142 }
143
144 inFile.seekg(thisline);
145 inFile >> det >> c[0]
146 >> ring >> c[1]
8f3f0bec 147 >> board >> c[2]
bd727bee 148 >> sampleRate;
149
8f3f0bec 150 UInt_t nSec = (ring == 'I' ? 10 : 20);
151 UShort_t sector = board*nSec;
152 Set(det,ring,sector,0,sampleRate);
43a19191 153
154
bd727bee 155 }
156
157 inFile.seekg(0);
158
159
160}
8f6ee336 161
162//____________________________________________________________________
163//
164// EOF
165//