/[PAMELA software]/yoda/techmodel/PhysicsReader.cpp
ViewVC logotype

Contents of /yoda/techmodel/PhysicsReader.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.9 - (show annotations) (download)
Tue Sep 21 20:24:33 2004 UTC (20 years, 2 months ago) by kusanagi
Branch: MAIN
Changes since 1.8: +8 -8 lines
Commit toward log4cxx plus new packets types Reader

1 /** @file
2 * $Source: /home/cvsmanager/yoda/techmodel/PhysicsReader.cpp,v $
3 * $Id: PhysicsReader.cpp,v 1.8 2004/08/25 10:14:26 kusanagi Exp $
4 * $Author: kusanagi $
5 *
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 <log4cxx/logger.h>
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 using namespace pamela::anticounter;
29 using namespace pamela::calorimeter;
30 using namespace pamela::neutron;
31
32 static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.PhysicsReader"));
33
34 /**
35 * Constructor.
36 */
37 PhysicsReader::PhysicsReader(void):
38 TechmodelAlgorithm(PacketType::Physics, "TechmodelPhysicsReader") {
39 logger->debug(_T("Constructor"));
40 trackerReader = new TrackerReader();
41 anticounterReader = new AnticounterReader();
42 calorimeterReader = new CalorimeterReader();
43 neutronReader = new NeutronDetectorReader();
44 }
45
46 /**
47 * Get a string with the version info of the algorithm.
48 */
49 std::string PhysicsReader::GetVersionInfo(void) const {
50 return
51 "$Header: /home/cvsmanager/yoda/techmodel/PhysicsReader.cpp,v 1.8 2004/08/25 10:14:26 kusanagi Exp $\n";
52 }
53
54 /**
55 * Initialize the algorithm with a special run. This will initialize the
56 * event reader routines for all packet types.
57 */
58 void PhysicsReader::Init(PamelaRun *run) {
59 SetInputStream(run);
60 trackerReader->Init(run);
61 anticounterReader->Init(run);
62 calorimeterReader->Init(run);
63 neutronReader->Init(run);
64 //run->WriteSubPacket(this, &physicsEvent, physicsEvent->Class());
65 logger->debug(_T("Initialize"));
66 }
67
68 /**
69 * Unpack the Physics event from an input file.
70 */
71 void PhysicsReader::RunEvent(int EventNumber, long int dataLenght) {
72 char *subData = new char[dataLenght];
73 InputFile->read(subData, sizeof(unsigned char)*dataLenght);
74
75 /*-----------------*/
76 //passo packetData a tutti i reader dei vari rivelatori
77 trackerReader->RunEvent(EventNumber, subData, dataLenght);
78 anticounterReader->RunEvent(EventNumber, subData, dataLenght);
79 calorimeterReader->RunEvent(EventNumber, subData, dataLenght);
80 neutronReader->RunEvent(EventNumber, subData, dataLenght);
81 /*-----------------*/
82 delete[] subData;
83 }
84

  ViewVC Help
Powered by ViewVC 1.1.23