/[PAMELA software]/chewbacca/PamOffLineSW/techmodel/PhysicsReader.cpp
ViewVC logotype

Annotation of /chewbacca/PamOffLineSW/techmodel/PhysicsReader.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.2 - (hide annotations) (download)
Fri Dec 12 15:58:51 2008 UTC (15 years, 11 months ago) by mocchiut
Branch: MAIN
CVS Tags: v1r02, v1r00, v1r01
Changes since 1.1: +5 -4 lines
The ND is not unpacked! fixed...

1 mocchiut 1.1 /** @file
2 mocchiut 1.2 * $Source: /afs/ba.infn.it/user/pamela/src/CVS/chewbacca/PamOffLineSW/techmodel/PhysicsReader.cpp,v $
3     * $Id: PhysicsReader.cpp,v 1.1.1.1 2008/09/23 07:20:25 mocchiut Exp $
4     * $Author: mocchiut $
5 mocchiut 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    
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     using namespace pamela;
25     using namespace pamela::techmodel;
26     using namespace pamela::tracker;
27     using namespace pamela::anticounter;
28     using namespace pamela::calorimeter;
29     using namespace pamela::neutron;
30     using namespace pamela::S4;
31     using namespace pamela::tof;
32     using namespace pamela::trigger;
33    
34     /**
35     * Constructor.
36     */
37     PhysicsReader::PhysicsReader(void):
38     TechmodelAlgorithm(PacketType::Physics, "TechmodelPhysicsReader") {
39     trackerReader = new TrackerReader;
40     anticounterReader = new AnticounterReader;
41     calorimeterReader = new CalorimeterReader;
42     neutronReader = new NeutronDetectorReader;
43     s4Reader = new S4Reader;
44     tofReader = new TofReader;
45     triggerReader = new TriggerReader;
46     }
47    
48     /**
49     * Initialize the algorithm with a special run. This will initialize the
50     * event reader routines for all packet types.
51     */
52     void PhysicsReader::Init(PamelaRun *run)
53     {
54     trackerReader->Init(run);
55     anticounterReader->Init(run);
56     calorimeterReader->Init(run);
57     neutronReader->Init(run);
58     s4Reader->Init(run);
59     tofReader->Init(run);
60     triggerReader->Init(run);
61     ////run->WriteSubPacket(this, &physicsEvent, physicsEvent->Class());
62     }
63    
64     /**
65     * Unpack the Physics event from an input file.
66     */
67     void PhysicsReader::PKT_RunEvent(char* subData, long int dataLenght) throw (Exception)
68     {
69     int EventNumber = 0;
70     /*-----------------*/
71     //passo packetData a tutti i reader dei vari rivelatori
72     triggerReader->RunEvent(EventNumber, subData, dataLenght);
73     tofReader->RunEvent(EventNumber, subData, dataLenght);
74     trackerReader->RunEvent(EventNumber, subData, dataLenght);
75     anticounterReader->RunEvent(EventNumber, subData, dataLenght);
76     calorimeterReader->RunEvent(EventNumber, subData, dataLenght);
77 mocchiut 1.2 neutronReader->RunEvent(EventNumber, subData, dataLenght); // Emiliano!
78 mocchiut 1.1 s4Reader->RunEvent(EventNumber, subData, dataLenght);
79     // if(...)
80     // throw WrongCRCException_PKTUsed("asdsadas");
81    
82     }
83    
84     /**
85     * Get a string with the version info of the algorithm.
86     */
87     std::string PhysicsReader::GetVersionInfo(void) const {
88     return
89 mocchiut 1.2 "$Header: /afs/ba.infn.it/user/pamela/src/CVS/chewbacca/PamOffLineSW/techmodel/PhysicsReader.cpp,v 1.1.1.1 2008/09/23 07:20:25 mocchiut Exp $\n";
90 mocchiut 1.1 }
91    

  ViewVC Help
Powered by ViewVC 1.1.23