- Timestamp:
- 08/09/11 23:53:44 (13 years ago)
- Location:
- trunk/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Mars/Changelog
r11869 r11870 23 23 * mraw/MRawRunHeader.[h,cc]: 24 24 - implemented setting pixel map in InitFact 25 26 * mraw/MRawEvtData.cc: 27 - when setting a pixel map, subtract one to get from the id to 28 the index 25 29 26 30 -
trunk/Mars/mraw/MRawEvtData.cc
r11555 r11870 513 513 return; 514 514 515 memcpy(fHiGainPixId->GetArray(), idx.GetArray(), idx.GetSize()*sizeof(UShort_t)); 515 for (UInt_t i=0; i<fHiGainPixId->GetSize(); i++) 516 (*fHiGainPixId)[i] = idx[i]-1; 516 517 } 517 518
Note:
See TracChangeset
for help on using the changeset viewer.