1 |
kusanagi |
1.1 |
/** @file |
2 |
kusanagi |
1.2 |
* $Source: /home/cvsmanager/yoda/techmodel/PhysicsReader.cpp,v $ |
3 |
kusanagi |
1.5 |
* $Id: PhysicsReader.cpp,v 1.4 2004/08/19 15:24:46 kusanagi Exp $ |
4 |
kusanagi |
1.2 |
* $Author: kusanagi $ |
5 |
kusanagi |
1.1 |
* |
6 |
|
|
* Implementation of the LogReader class. |
7 |
|
|
* ToBeDone: |
8 |
|
|
* Control the CRC for the entire data Packet not just for single records |
9 |
|
|
*/ |
10 |
|
|
|
11 |
|
|
#define UINT unsigned int |
12 |
|
|
#define BYTE unsigned char |
13 |
|
|
#include <string> |
14 |
|
|
#include <log4cpp/Category.hh> |
15 |
|
|
extern "C" { |
16 |
|
|
#include <sys/time.h> |
17 |
|
|
#include "CRC.h" |
18 |
|
|
} |
19 |
|
|
|
20 |
|
|
#include <fstream> |
21 |
|
|
#include "stdio.h" |
22 |
|
|
#include "ReaderAlgorithms.h" |
23 |
|
|
|
24 |
|
|
|
25 |
|
|
using namespace pamela; |
26 |
|
|
using namespace pamela::techmodel; |
27 |
|
|
using namespace pamela::tracker; |
28 |
kusanagi |
1.3 |
using namespace pamela::anticounter; |
29 |
|
|
using namespace pamela::calorimeter; |
30 |
kusanagi |
1.4 |
using namespace pamela::neutron; |
31 |
kusanagi |
1.1 |
|
32 |
|
|
static log4cpp::Category& cat = log4cpp::Category::getInstance("pamela.techmodel.PhysicsReader"); |
33 |
|
|
|
34 |
|
|
/** |
35 |
|
|
* Constructor. |
36 |
|
|
*/ |
37 |
|
|
PhysicsReader::PhysicsReader(void): |
38 |
kusanagi |
1.4 |
TechmodelAlgorithm(PacketType::Physics, "TechmodelPhysicsReader") { |
39 |
kusanagi |
1.1 |
cat << log4cpp::Priority::DEBUG |
40 |
|
|
<< "Constructor " |
41 |
|
|
<< "\n " << log4cpp::CategoryStream::ENDLINE; |
42 |
kusanagi |
1.3 |
trackerReader = new TrackerReader(); |
43 |
|
|
anticounterReader = new AnticounterReader(); |
44 |
|
|
calorimeterReader = new CalorimeterReader(); |
45 |
kusanagi |
1.4 |
neutronReader = new NeutronDetectorReader(); |
46 |
kusanagi |
1.1 |
} |
47 |
|
|
|
48 |
|
|
/** |
49 |
|
|
* Get a string with the version info of the algorithm. |
50 |
|
|
*/ |
51 |
|
|
std::string PhysicsReader::GetVersionInfo(void) const { |
52 |
|
|
return |
53 |
kusanagi |
1.5 |
"$Header: /home/cvsmanager/yoda/techmodel/PhysicsReader.cpp,v 1.4 2004/08/19 15:24:46 kusanagi Exp $\n"; |
54 |
kusanagi |
1.1 |
} |
55 |
|
|
|
56 |
|
|
/** |
57 |
|
|
* Initialize the algorithm with a special run. This will initialize the |
58 |
|
|
* event reader routines for all packet types. |
59 |
|
|
*/ |
60 |
|
|
void PhysicsReader::Init(PamelaRun *run) { |
61 |
|
|
SetInputStream(run); |
62 |
|
|
trackerReader->Init(run); |
63 |
kusanagi |
1.3 |
anticounterReader->Init(run); |
64 |
|
|
calorimeterReader->Init(run); |
65 |
kusanagi |
1.4 |
neutronReader->Init(run); |
66 |
kusanagi |
1.1 |
//run->WriteSubPacket(this, &physicsEvent, physicsEvent->Class()); |
67 |
|
|
} |
68 |
|
|
|
69 |
|
|
/** |
70 |
|
|
* Unpack the Physics event from an input file. |
71 |
|
|
*/ |
72 |
kusanagi |
1.4 |
void PhysicsReader::RunEvent(int EventNumber, long int dataLenght) { |
73 |
|
|
char *subData = new char[dataLenght]; |
74 |
|
|
InputFile->read(subData, sizeof(unsigned char)*dataLenght); |
75 |
kusanagi |
1.1 |
|
76 |
kusanagi |
1.3 |
/*-----------------*/ |
77 |
kusanagi |
1.1 |
//passo packetData a tutti i reader dei vari rivelatori |
78 |
kusanagi |
1.4 |
trackerReader->RunEvent(EventNumber, subData, dataLenght); |
79 |
kusanagi |
1.5 |
//anticounterReader->RunEvent(EventNumber, subData, dataLenght); |
80 |
kusanagi |
1.4 |
calorimeterReader->RunEvent(EventNumber, subData, dataLenght); |
81 |
|
|
neutronReader->RunEvent(EventNumber, subData, dataLenght); |
82 |
kusanagi |
1.3 |
/*-----------------*/ |
83 |
kusanagi |
1.1 |
} |
84 |
|
|
|