Changeset 9270 for trunk/MagicSoft/Mars/mraw
- Timestamp:
- 01/26/09 11:59:12 (16 years ago)
- Location:
- trunk/MagicSoft/Mars/mraw
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mraw/MRawRunHeader.cc
r9229 r9270 1151 1151 // Init a camera 1152 1152 // 1153 void MRawRunHeader::InitCamera(UShort_t type )1153 void MRawRunHeader::InitCamera(UShort_t type, UShort_t pix) 1154 1154 { 1155 1155 switch (type) … … 1163 1163 fNumPixInCrate = 703; 1164 1164 break; 1165 case (UShort_t)-1: 1166 fNumCrates = 1; 1167 fNumPixInCrate = pix; 1168 break; 1165 1169 } 1166 1170 -
trunk/MagicSoft/Mars/mraw/MRawRunHeader.h
r9261 r9270 100 100 */ 101 101 void InitFadcType(UShort_t type); 102 void InitCamera(UShort_t type); 102 void InitCamera(UShort_t type, UShort_t pix=0); 103 void InitPixels(UShort_t pix) { InitCamera((UShort_t)-1, pix); } 103 104 void SetRunInfo(UShort_t type, UShort_t tel, UInt_t run, UInt_t file=0); 104 105 void SetSourceInfo(const char src[80], char epoch='J', UShort_t date=2000);
Note:
See TracChangeset
for help on using the changeset viewer.