5 |
#define UINT unsigned int |
#define UINT unsigned int |
6 |
#define BYTE unsigned char |
#define BYTE unsigned char |
7 |
#include <string> |
#include <string> |
8 |
#include <log4cpp/Category.hh> |
#include <log4cxx/logger.h> |
9 |
extern "C" { |
extern "C" { |
10 |
#include <sys/time.h> |
#include <sys/time.h> |
11 |
#include "CRC.h" |
#include "CRC.h" |
15 |
#include "stdio.h" |
#include "stdio.h" |
16 |
#include "ReaderAlgorithms.h" |
#include "ReaderAlgorithms.h" |
17 |
|
|
|
#include "event/PhysEndRunEvent.h" |
|
|
|
|
18 |
using namespace pamela; |
using namespace pamela; |
19 |
using namespace pamela::techmodel; |
using namespace pamela::techmodel; |
20 |
|
|
21 |
static log4cpp::Category& cat = log4cpp::Category::getInstance("pamela.techmodel.PhysEndRunReader"); |
static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.PhysEndRunReader")); |
22 |
|
|
23 |
/** |
/** |
24 |
* Constructor. |
* Constructor. |
25 |
*/ |
*/ |
26 |
PhysEndRunReader::PhysEndRunReader(void): |
PhysEndRunReader::PhysEndRunReader(void): |
27 |
TechmodelAlgorithm(PacketType::PhysEndRun, "TechmodelPhysEndRunReader") { |
TechmodelAlgorithm(PacketType::PhysEndRun, "TechmodelPhysEndRunReader") { |
28 |
cat << log4cpp::Priority::DEBUG |
logger->debug(_T("Constructor")); |
|
<< "Constructor " |
|
|
<< "\n " << log4cpp::CategoryStream::ENDLINE; |
|
29 |
physEndRun = new PhysEndRunEvent(); |
physEndRun = new PhysEndRunEvent(); |
30 |
} |
} |
31 |
|
|
34 |
*/ |
*/ |
35 |
std::string PhysEndRunReader::GetVersionInfo(void) const { |
std::string PhysEndRunReader::GetVersionInfo(void) const { |
36 |
return |
return |
37 |
"$Header: /home/cvsmanager/yoda/techmodel/PhysEndRunReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 kusanagi Exp $\n"; |
"$Header: /home/cvsmanager/yoda/techmodel/PhysEndRunReader.cpp,v 2.1 2004/12/03 22:08:01 kusanagi Exp $\n"; |
38 |
} |
} |
39 |
|
|
40 |
/** |
/** |
44 |
void PhysEndRunReader::Init(PamelaRun *run) { |
void PhysEndRunReader::Init(PamelaRun *run) { |
45 |
SetInputStream(run); |
SetInputStream(run); |
46 |
run->WriteSubPacket(this, &physEndRun, physEndRun->Class()); |
run->WriteSubPacket(this, &physEndRun, physEndRun->Class()); |
47 |
|
logger->debug(_T("Initialize")); |
48 |
} |
} |
49 |
|
|
50 |
/** |
/** |
51 |
* Unpack the PhysEndRun event from an input file. |
* Unpack the PhysEndRun event from an input file. |
52 |
*/ |
*/ |
53 |
void PhysEndRunReader::RunEvent(int EventNumber, long int length) { |
void PhysEndRunReader::RunEvent(int EventNumber, long int length) throw (WrongCRCException){ |
54 |
|
|
55 |
|
|
56 |
} |
} |