Go to the documentation of this file.00001
00002
00003
00004 #include "L1Trigger/DTTraco/interface/Lut.h"
00005
00006
00007
00008
00009
00010 Lut::Lut(DTConfigLUTs* conf, int ntc): _conf_luts(conf) {
00011
00012
00013 m_d = _conf_luts->D();
00014 m_ST = _conf_luts->BTIC();
00015 m_wheel = _conf_luts->Wheel();
00016 m_Xcn = _conf_luts->Xcn() - (CELL_PITCH * 4.0 * (float)(ntc-1) * (float) m_wheel);
00017
00018 m_pitch_d_ST = CELL_PITCH / m_ST;
00019
00020 std::cout<< "Lut::Lut -> m_d " << m_d << " m_ST " << m_ST << " m_wheel " << m_wheel << " m_Xcn " << m_Xcn << " ntc " << ntc << std::endl;
00021
00022 return;
00023 }
00024
00025 Lut::~Lut() {}
00026
00027 void Lut::setForTestBeam( int station, int board, int traco ) {
00028
00029 int nStat = station;
00030 int nBoard = board;
00031 int nTraco = traco;
00032 float tracoPos[50];
00033
00034 if( nStat ==1 ){
00035
00036 tracoPos[ 0] = -120.19;
00037 tracoPos[ 1] = -103.39;
00038 tracoPos[ 2] = -86.59;
00039 tracoPos[ 3] = -69.80;
00040 tracoPos[10] = -52.99;
00041 tracoPos[11] = -36.19;
00042 tracoPos[12] = -19.39;
00043 tracoPos[13] = -2.59;
00044 tracoPos[20] = 14.20;
00045 tracoPos[21] = 31.00;
00046 tracoPos[22] = 47.80;
00047 tracoPos[23] = 64.60;
00048 tracoPos[30] = 81.40;
00049
00050 m_d = 431.175;
00051 m_ST = 31;
00052 float m_Xc = tracoPos[ ( nBoard * 10 ) + nTraco ];
00053 float m_Xn = +39.0;
00054 m_Xcn = m_Xn - m_Xc;
00055
00056
00057 }
00058
00059 if( nStat ==3){
00060 tracoPos[ 0] = -165.45;
00061 tracoPos[ 1] = -148.65;
00062 tracoPos[ 2] = -131.85;
00063 tracoPos[ 3] = -115.05;
00064 tracoPos[10] = -98.25;
00065 tracoPos[11] = -81.45;
00066 tracoPos[12] = -64.65;
00067 tracoPos[13] = -47.85;
00068 tracoPos[20] = -31.05;
00069 tracoPos[21] = -14.25;
00070 tracoPos[22] = 2.54;
00071 tracoPos[23] = 19.34;
00072 tracoPos[30] = 36.14;
00073 tracoPos[31] = 52.94;
00074 tracoPos[32] = 69.74;
00075 tracoPos[33] = 86.54;
00076 tracoPos[40] = 103.34;
00077 tracoPos[41] = 120.14;
00078 tracoPos[42] = 136.94;
00079 tracoPos[43] = 153.74;
00080
00081 m_d = 512.47;
00082 m_ST = 31;
00083 float m_Xc = tracoPos[ ( nBoard * 10 ) + nTraco ];
00084 float m_Xn = -21.0;
00085 m_Xcn = m_Xn - m_Xc;
00086
00087
00088
00089 }
00090
00091 return;
00092 }
00093
00094
00095 int Lut::get_k( int addr ) {
00096
00097 int i;
00098 float x;
00099 i = addr - 512;
00100 x = (float)i * CELL_PITCH / ( SL_D * m_ST );
00101 x = atanf(x);
00102 x = x * ANGRESOL;
00103 if(m_wheel<0)
00104 x = -x;
00105
00106 return (int)x;
00107 }
00108
00109 int Lut::get_x( int addr ) {
00110 int i;
00111 float a,b,x;
00112
00113 if(addr<=511)
00114 {
00115 i=addr;
00116 b=m_d+SL_DIFF;
00117 }
00118 else if(addr<=1023)
00119 {
00120 i=addr-512;
00121 b=m_d-SL_DIFF;
00122 }
00123 else
00124 {
00125 i=addr-1024;
00126 b=m_d;
00127 }
00128 a = m_Xcn - (m_pitch_d_ST * (float)i * (float)m_wheel);
00129 x = a/b;
00130
00131 x = atanf(x);
00132 x = x * POSRESOL;
00133
00134 return (int)x;
00135 }
00136
00137 char exaDigit( int i ) {
00138 if ( i < 10 ) return ( i + '0' );
00139 else return ( ( i - 10 ) + 'A' );
00140 }
00141
00142 std::string lutFmt( int i ) {
00143 char* buf = new char[6];
00144 buf[2] = ' ';
00145 buf[5] = '\0';
00146 int j4 = i % 16;
00147 i /= 16;
00148 int j3 = i % 16;
00149 i /= 16;
00150 int j2 = i % 16;
00151 i /= 16;
00152 int j1 = i % 16;
00153 buf[0] = exaDigit( j1 );
00154 buf[1] = exaDigit( j2 );
00155 buf[3] = exaDigit( j3 );
00156 buf[4] = exaDigit( j4 );
00157 std::string s( buf );
00158 return s;
00159 }
00160
00161
00162
00163
00164
00165
00166
00167
00168
00169
00170
00171
00172
00173
00174
00175
00176
00177
00178
00179
00180
00181
00182
00183
00184
00185
00186
00187
00188
00189
00190
00191
00192
00193
00194
00195
00196
00197
00198
00199
00200
00201
00202
00203
00204
00205
00206
00207
00208
00209
00210
00211
00212
00213
00214
00215
00216
00217
00218
00219
00220
00221
00222
00223
00224
00225
00226
00227
00228
00229
00230
00231
00232
00233
00234
00235
00236
00237
00238
00239
00240
00241
00242
00243
00244
00245
00246
00247
00248
00249
00250
00251
00252
00253
00254
00255
00256
00257
00258
00259
00260
00261
00262
00263
00264
00265
00266
00267
00268
00269
00270
00271
00272
00273
00274
00275
00276
00277
00278
00279
00280
00281
00282
00283
00284
00285
00286
00287
00288
00289
00290
00291
00292
00293
00294
00295
00296
00297
00298
00299
00300
00301
00302
00303
00304
00305
00306
00307
00308
00309
00310
00311
00312
00313
00314
00315
00316
00317
00318
00319
00320
00321
00322
00323
00324
00325
00326
00327
00328
00329
00330
00331
00332
00333
00334
00335
00336
00337
00338
00339
00340
00341
00342
00343
00344
00345
00346
00347
00348
00349
00350
00351
00352
00353
00354
00355
00356
00357
00358
00359
00360
00361
00362
00363
00364
00365
00366
00367
00368
00369
00370
00371
00372
00373
00374
00375
00376
00377
00378
00379
00380
00381
00382
00383
00384
00385
00386
00387
00388
00389
00390
00391
00392
00393 void DSPtoIEEE32(short DSPmantissa, short DSPexp, float *f)
00394 {
00395 DSPexp -= 15;
00396 *f = DSPmantissa * (float)pow( 2.0, DSPexp );
00397
00398 return;
00399 }
00400
00401
00402 void IEEE32toDSP(float f, short *DSPmantissa, short *DSPexp)
00403 {
00404
00405 uint32_t *pl = 0;
00406 uint32_t lm;
00407
00408
00409 union { float f; uint32_t i; } u;
00410 u.f = f;
00411 *pl = u.i;
00412
00413 bool sign=false;
00414 if( f==0.0 )
00415 {
00416 *DSPexp = 0;
00417 *DSPmantissa = 0;
00418 }
00419 else
00420 {
00421
00422
00423 if((*pl & 0x80000000)!=0)
00424 sign=true;
00425 lm =( 0x800000 | (*pl & 0x7FFFFF));
00426 lm >>= 9;
00427 lm &= 0x7FFF;
00428 *DSPexp = ((*pl>>23)&0xFF)-126;
00429 *DSPmantissa = (short)lm;
00430 if(sign)
00431 *DSPmantissa = - *DSPmantissa;
00432
00433 }
00434 return;
00435 }
00436
00437