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

Annotation of /yoda/techmodel/PhysicsReader.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 6.4 - (hide annotations) (download)
Fri Oct 20 11:07:41 2006 UTC (18 years, 1 month ago) by mocchiut
Branch: MAIN
CVS Tags: YODA6_3/19, YODA6_3/18, YODA6_3/17, YODA6_3/16, YODA6_3/15, YODA6_3/14, YODA6_3/20, HEAD
Changes since 6.3: +6 -6 lines
YODA crash bugs fixed + further reduced printout

1 kusanagi 1.9 /** @file
2 pam-rm2 6.2 * $Source: /afs/ba.infn.it/user/pamela/src/CVS/yoda/techmodel/PhysicsReader.cpp,v $
3 mocchiut 6.4 * $Id: PhysicsReader.cpp,v 6.3 2006/09/29 10:19:25 mocchiut Exp $
4     * $Author: mocchiut $
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 kusanagi 1.9 #include <log4cxx/logger.h>
15 kusanagi 1.1 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 2.2 using namespace pamela::S4;
32 kusanagi 2.4 using namespace pamela::tof;
33     using namespace pamela::trigger;
34 kusanagi 1.1
35 kusanagi 1.9 static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.PhysicsReader"));
36 kusanagi 1.1
37     /**
38     * Constructor.
39     */
40     PhysicsReader::PhysicsReader(void):
41 kusanagi 2.4 TechmodelAlgorithm(PacketType::Physics, "TechmodelPhysicsReader") {
42     logger->debug(_T("Constructor"));
43     trackerReader = new TrackerReader;
44     anticounterReader = new AnticounterReader;
45     calorimeterReader = new CalorimeterReader;
46     neutronReader = new NeutronDetectorReader;
47     s4Reader = new S4Reader;
48     tofReader = new TofReader;
49     triggerReader = new TriggerReader;
50 kusanagi 1.1 }
51    
52     /**
53     * Get a string with the version info of the algorithm.
54     */
55     std::string PhysicsReader::GetVersionInfo(void) const {
56     return
57 mocchiut 6.4 "$Header: /afs/ba.infn.it/user/pamela/src/CVS/yoda/techmodel/PhysicsReader.cpp,v 6.3 2006/09/29 10:19:25 mocchiut Exp $\n";
58 kusanagi 1.1 }
59    
60     /**
61     * Initialize the algorithm with a special run. This will initialize the
62     * event reader routines for all packet types.
63     */
64     void PhysicsReader::Init(PamelaRun *run) {
65 kusanagi 2.4 SetInputStream(run);
66     trackerReader->Init(run);
67     anticounterReader->Init(run);
68     calorimeterReader->Init(run);
69     neutronReader->Init(run);
70     s4Reader->Init(run);
71     tofReader->Init(run);
72     triggerReader->Init(run);
73 kusanagi 1.1 //run->WriteSubPacket(this, &physicsEvent, physicsEvent->Class());
74 kusanagi 1.9 logger->debug(_T("Initialize"));
75 kusanagi 1.1 }
76    
77     /**
78     * Unpack the Physics event from an input file.
79     */
80 kusanagi 2.1 void PhysicsReader::RunEvent(int EventNumber, long int dataLenght) throw (Exception){
81 kusanagi 1.4 char *subData = new char[dataLenght];
82 mocchiut 6.3 memset(subData, 0, dataLenght*sizeof(char));
83 kusanagi 1.4 InputFile->read(subData, sizeof(unsigned char)*dataLenght);
84 kusanagi 1.1
85 kusanagi 2.4 /*-----------------*/
86     //passo packetData a tutti i reader dei vari rivelatori
87 mocchiut 6.4 triggerReader->RunEvent(EventNumber, subData, dataLenght);
88     tofReader->RunEvent(EventNumber, subData, dataLenght);
89 kusanagi 2.4 trackerReader->RunEvent(EventNumber, subData, dataLenght);
90     anticounterReader->RunEvent(EventNumber, subData, dataLenght);
91     calorimeterReader->RunEvent(EventNumber, subData, dataLenght);
92 mocchiut 6.4 s4Reader->RunEvent(EventNumber, subData, dataLenght);
93 kusanagi 2.4 neutronReader->RunEvent(EventNumber, subData, dataLenght);
94     /*-----------------*/
95 kusanagi 3.1 delete [] subData;
96 kusanagi 1.1 }
97    

  ViewVC Help
Powered by ViewVC 1.1.23