Changeset 11448 for trunk/Mars/mraw
- Timestamp:
- 07/18/11 16:50:27 (13 years ago)
- Location:
- trunk/Mars/mraw
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Mars/mraw/MRawRunHeader.cc
r9542 r11448 1278 1278 } 1279 1279 1280 void MRawRunHeader::InitFact(UShort_t num, UShort_t pix, UShort_t samples) 1281 { 1282 fNumCrates = num; 1283 fNumPixInCrate = pix; 1284 fCameraVersion = 0xfac7; 1285 fFadcType = 0xfac7; 1286 1287 fPixAssignment->Set(num*pix); 1288 1289 for (int i=0; i<num*pix; i++) 1290 (*fPixAssignment)[i] = i+1; 1291 1292 fNumSamplesHiGain = samples; 1293 fNumSamplesLoGain = 0; 1294 fNumBytesPerSample = 2; // number of bytes per sample 1295 fSamplingFrequency = 2000; // Sampling Frequency [MHz] 1296 fFadcResolution = 12; // number of significant bits 1297 } 1298 1280 1299 // -------------------------------------------------------------------------- 1281 1300 // -
trunk/Mars/mraw/MRawRunHeader.h
r9606 r11448 29 29 kRTPointRun = 0x0007, 30 30 kRTMonteCarlo = 0x0100, 31 kRTFact = 0xfac7, 31 32 kRTNone = 0xffff 32 33 }; … … 107 108 void InitCamera(UShort_t type, UShort_t pix=0); 108 109 void InitPixels(UShort_t pix) { InitCamera((UShort_t)-1, pix); } 110 void InitFact(UShort_t num, UShort_t pix, UShort_t samples); 109 111 void SetRunType(UShort_t type) { fRunType=type; } 110 112 void SetRunInfo(UShort_t tel, UInt_t run, UInt_t file=0); … … 116 118 void SetNumEvents(UInt_t num); 117 119 void SetValidMagicNumber() { fMagicNumber=kMagicNumber; } 120 void SetFormat(UShort_t file, UShort_t soft) { fFormatVersion=file; fSoftVersion=soft; } 118 121 119 122 // This is to get the numbers...
Note:
See TracChangeset
for help on using the changeset viewer.