forked from alisw/AliRoot
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removing the tasks from the digitization (Ruben)
- Loading branch information
hristov
committed
Oct 23, 2011
1 parent
61d4455
commit 2a69928
Showing
122 changed files
with
829 additions
and
1,908 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,18 +10,18 @@ | |
// Mario Rodriguez Cahuantzi <[email protected]> | ||
// Arturo Fernandez Tellez <[email protected]> | ||
|
||
#include <TTask.h> | ||
#include <TNamed.h> | ||
#include "AliRawReader.h" | ||
|
||
|
||
class AliACORDERawReader : public TTask { | ||
class AliACORDERawReader : public TNamed { | ||
public : | ||
|
||
AliACORDERawReader(AliRawReader *rawReader,Bool_t isOnline = kFALSE) ; | ||
//AliACORDERawReader(AliRawReader *rawReader,Bool_t isOnline = kTRUE) ; | ||
|
||
virtual ~AliACORDERawReader(); | ||
AliACORDERawReader(const AliACORDERawReader& o): TTask(o),fRawReader(0),fData(NULL),fPosition(0),fIsOnline(kFALSE),fDataSize(0) | ||
AliACORDERawReader(const AliACORDERawReader& o): TNamed(o),fRawReader(0),fData(NULL),fPosition(0),fIsOnline(kFALSE),fDataSize(0) | ||
{ | ||
fWord[0] = fWord[1] = fWord[2] = fWord[3] = 0; | ||
} | ||
|
@@ -64,7 +64,7 @@ enum EACORDERawStreamError { | |
kRawDataSizeErr = 1 | ||
}; | ||
|
||
ClassDef(AliACORDERawReader,2) //class for reading ACORDE Raw data | ||
ClassDef(AliACORDERawReader,3) //class for reading ACORDE Raw data | ||
}; | ||
|
||
typedef AliACORDERawReader AliSTARTRawReader; // for backward compatibility | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.