1 |
/** @file |
/** @file |
2 |
* $Source: /home/cvsmanager/yoda/techmodel/PhysicsReader.cpp,v $ |
* $Source: /home/cvsmanager/yoda/techmodel/PhysicsReader.cpp,v $ |
3 |
* $Id: PhysicsReader.cpp,v 1.7 2004/08/24 08:01:44 kusanagi Exp $ |
* $Id: PhysicsReader.cpp,v 2.0 2004/09/21 20:50:54 kusanagi Exp $ |
4 |
* $Author: kusanagi $ |
* $Author: kusanagi $ |
5 |
* |
* |
6 |
* Implementation of the LogReader class. |
* Implementation of the LogReader class. |
11 |
#define UINT unsigned int |
#define UINT unsigned int |
12 |
#define BYTE unsigned char |
#define BYTE unsigned char |
13 |
#include <string> |
#include <string> |
14 |
#include <log4cpp/Category.hh> |
#include <log4cxx/logger.h> |
15 |
extern "C" { |
extern "C" { |
16 |
#include <sys/time.h> |
#include <sys/time.h> |
17 |
#include "CRC.h" |
#include "CRC.h" |
29 |
using namespace pamela::calorimeter; |
using namespace pamela::calorimeter; |
30 |
using namespace pamela::neutron; |
using namespace pamela::neutron; |
31 |
|
|
32 |
static log4cpp::Category& cat = log4cpp::Category::getInstance("pamela.techmodel.PhysicsReader"); |
static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.PhysicsReader")); |
33 |
|
|
34 |
/** |
/** |
35 |
* Constructor. |
* Constructor. |
36 |
*/ |
*/ |
37 |
PhysicsReader::PhysicsReader(void): |
PhysicsReader::PhysicsReader(void): |
38 |
TechmodelAlgorithm(PacketType::Physics, "TechmodelPhysicsReader") { |
TechmodelAlgorithm(PacketType::Physics, "TechmodelPhysicsReader") { |
39 |
cat << log4cpp::Priority::DEBUG |
logger->debug(_T("Constructor")); |
|
<< "Constructor " |
|
|
<< "\n " << log4cpp::CategoryStream::ENDLINE; |
|
40 |
trackerReader = new TrackerReader(); |
trackerReader = new TrackerReader(); |
41 |
anticounterReader = new AnticounterReader(); |
anticounterReader = new AnticounterReader(); |
42 |
calorimeterReader = new CalorimeterReader(); |
calorimeterReader = new CalorimeterReader(); |
48 |
*/ |
*/ |
49 |
std::string PhysicsReader::GetVersionInfo(void) const { |
std::string PhysicsReader::GetVersionInfo(void) const { |
50 |
return |
return |
51 |
"$Header: /home/cvsmanager/yoda/techmodel/PhysicsReader.cpp,v 1.7 2004/08/24 08:01:44 kusanagi Exp $\n"; |
"$Header: /home/cvsmanager/yoda/techmodel/PhysicsReader.cpp,v 2.0 2004/09/21 20:50:54 kusanagi Exp $\n"; |
52 |
} |
} |
53 |
|
|
54 |
/** |
/** |
62 |
calorimeterReader->Init(run); |
calorimeterReader->Init(run); |
63 |
neutronReader->Init(run); |
neutronReader->Init(run); |
64 |
//run->WriteSubPacket(this, &physicsEvent, physicsEvent->Class()); |
//run->WriteSubPacket(this, &physicsEvent, physicsEvent->Class()); |
65 |
|
logger->debug(_T("Initialize")); |
66 |
} |
} |
67 |
|
|
68 |
/** |
/** |
69 |
* Unpack the Physics event from an input file. |
* Unpack the Physics event from an input file. |
70 |
*/ |
*/ |
71 |
void PhysicsReader::RunEvent(int EventNumber, long int dataLenght) { |
void PhysicsReader::RunEvent(int EventNumber, long int dataLenght) throw (Exception){ |
72 |
char *subData = new char[dataLenght]; |
char *subData = new char[dataLenght]; |
73 |
InputFile->read(subData, sizeof(unsigned char)*dataLenght); |
InputFile->read(subData, sizeof(unsigned char)*dataLenght); |
74 |
|
|
79 |
calorimeterReader->RunEvent(EventNumber, subData, dataLenght); |
calorimeterReader->RunEvent(EventNumber, subData, dataLenght); |
80 |
neutronReader->RunEvent(EventNumber, subData, dataLenght); |
neutronReader->RunEvent(EventNumber, subData, dataLenght); |
81 |
/*-----------------*/ |
/*-----------------*/ |
82 |
|
delete[] subData; |
83 |
} |
} |
84 |
|
|