Skip to content

Commit

Permalink
New release tag
Browse files Browse the repository at this point in the history
  • Loading branch information
hristov committed Feb 6, 2008
2 parents bae5d73 + eb813b7 commit b7dc999
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
3 changes: 1 addition & 2 deletions ITS/AliITSInitGeometry.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -2436,7 +2436,7 @@ Bool_t AliITSInitGeometry::WriteVersionString(Char_t *str,Int_t length,
i=0;n=0;
do{
cvslikedate[i] = cvsDate[i];
if(cvsDate[i++]=='-'){
if(cvsDate[i]=='+' || cvsDate[i++]=='-'){
n++; // count number of -
cvslikedate[i-1] = '/'; // replace -'s by /'s.
} // end if
Expand Down Expand Up @@ -2552,4 +2552,3 @@ Bool_t AliITSInitGeometry::ReadVersionString(const Char_t *str,Int_t length,
} // end switch
return ok;
}

4 changes: 2 additions & 2 deletions MUON/AliMUONRawStreamTracker.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ AliMUONRawStreamTracker::GetNextDDL()
fPayload->ResetDDL();

#ifndef R__BYTESWAP
swap(buffer, totalDataWord); // swap needed for mac power pc
Swap(buffer, totalDataWord / sizeof(UInt_t)); // swap needed for mac power pc
#endif

Bool_t ok = fPayload->Decode(buffer, totalDataWord/4);
Expand Down Expand Up @@ -393,7 +393,7 @@ Bool_t AliMUONRawStreamTracker::NextDDL()
}

#ifndef R__BYTESWAP
swap(buffer, totalDataWord); // swap needed for mac power pc
Swap(buffer, totalDataWord / sizeof(UInt_t)); // swap needed for mac power pc
#endif

Bool_t ok = fPayload->Decode(buffer, totalDataWord/4);
Expand Down
2 changes: 1 addition & 1 deletion MUON/AliMUONRawStreamTrackerHP.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ Bool_t AliMUONRawStreamTrackerHP::NextDDL()
}

#ifndef R__BYTESWAP
Swap(fBuffer, dataSize); // Swap needed for mac power pc.
Swap(reinterpret_cast<UInt_t*>fBuffer, dataSize / sizeof(UInt_t)); // Swap needed for mac power pc.
#endif

bool result = false;
Expand Down
6 changes: 3 additions & 3 deletions MUON/AliMUONRawStreamTrigger.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ Bool_t AliMUONRawStreamTrigger::GetNextDDL()
}

#ifndef R__BYTESWAP
swap(buffer, totalDataWord); // swap needed for mac power pc
Swap(buffer, totalDataWord / sizeof(UInt_t)); // swap needed for mac power pc
#endif

fPayload->ResetDDL();
Expand Down Expand Up @@ -354,8 +354,8 @@ Bool_t AliMUONRawStreamTrigger::NextDDL()
// check not necessary yet, but for future developments
if (!GetReader()->ReadNext((UChar_t*)buffer, totalDataWord)) return kFALSE;

#ifndef R__BYTESWAP
swap(buffer, totalDataWord); // swap needed for mac power pc
#ifndef R__BYTESWAP
Swap(buffer, totalDataWord / sizeof(UInt_t)); // swap needed for mac power pc
#endif

fPayload->Decode(buffer);
Expand Down

0 comments on commit b7dc999

Please sign in to comment.