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

Contents of /yoda/techmodel/PhysicsReader.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2.3 - (show annotations) (download)
Thu Dec 16 17:32:57 2004 UTC (19 years, 11 months ago) by kusanagi
Branch: MAIN
Changes since 2.2: +3 -2 lines
*** empty log message ***

1 /** @file
2 * $Source: /home/cvsmanager/yoda/techmodel/PhysicsReader.cpp,v $
3 * $Id: PhysicsReader.cpp,v 2.2 2004/12/09 08:48:41 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 using namespace pamela::S4;
32
33 static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.PhysicsReader"));
34
35 /**
36 * Constructor.
37 */
38 PhysicsReader::PhysicsReader(void):
39 TechmodelAlgorithm(PacketType::Physics, "TechmodelPhysicsReader") {
40 logger->debug(_T("Constructor"));
41 trackerReader = new TrackerReader;
42 anticounterReader = new AnticounterReader;
43 calorimeterReader = new CalorimeterReader;
44 neutronReader = new NeutronDetectorReader;
45 s4Reader = new S4Reader;
46 }
47
48 /**
49 * Get a string with the version info of the algorithm.
50 */
51 std::string PhysicsReader::GetVersionInfo(void) const {
52 return
53 "$Header: /home/cvsmanager/yoda/techmodel/PhysicsReader.cpp,v 2.2 2004/12/09 08:48:41 kusanagi Exp $\n";
54 }
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 anticounterReader->Init(run);
64 calorimeterReader->Init(run);
65 neutronReader->Init(run);
66 s4Reader->Init(run);
67 //run->WriteSubPacket(this, &physicsEvent, physicsEvent->Class());
68 logger->debug(_T("Initialize"));
69 }
70
71 /**
72 * Unpack the Physics event from an input file.
73 */
74 void PhysicsReader::RunEvent(int EventNumber, long int dataLenght) throw (Exception){
75 char *subData = new char[dataLenght];
76 InputFile->read(subData, sizeof(unsigned char)*dataLenght);
77
78 /*-----------------*/
79 //passo packetData a tutti i reader dei vari rivelatori
80 trackerReader->RunEvent(EventNumber, subData, dataLenght);
81 anticounterReader->RunEvent(EventNumber, subData, dataLenght);
82 calorimeterReader->RunEvent(EventNumber, subData, dataLenght);
83 neutronReader->RunEvent(EventNumber, subData, dataLenght);
84 s4Reader->RunEvent(EventNumber, subData, dataLenght);
85 /*-----------------*/
86 delete[] subData;
87 }
88

  ViewVC Help
Powered by ViewVC 1.1.23