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

Annotation of /yoda/techmodel/S4InitReader.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 6.2 - (hide annotations) (download)
Tue May 30 19:10:03 2006 UTC (18 years, 6 months ago) by kusanagi
Branch: MAIN
CVS Tags: YODA6_3/10, YODA6_3/06, YODA6_3/04, YODA6_3/05, YODA6_3/07, YODA6_3/00, YODA6_3/01, YODA6_3/02, YODA6_3/03, YODA6_3/08, YODA6_3/09
Changes since 6.1: +0 -0 lines
Major update.
All the packet officially produced by PAMELA are implemented and unpacked.
The RegistryEvent Packet has been removed and put into another library.
New version, releasd by D.Campana, of tofunpack.

1 kusanagi 2.1
2     // Implementation of the S4InitReader class.
3    
4     #include "ReaderAlgorithms.h"
5     using namespace pamela::techmodel;
6    
7     static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.S4InitReader"));
8    
9     /**
10     * Constructor.
11     */
12     S4InitReader::S4InitReader(void):
13     TechmodelAlgorithm(PacketType::S4Init, "S4InitReader") {
14     logger->debug(_T("Constructor"));
15     s4Init = new S4InitEvent;
16     }
17    
18     /**
19     * Get a string with the version info of the algorithm.
20     */
21     std::string S4InitReader::GetVersionInfo(void) const {
22     return
23 kusanagi 5.3 "$Trailer: /home/cvsmanager/yoda/techmodel/S4InitReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 Maurizio Nagni Exp $\n";
24 kusanagi 2.1 }
25    
26     /**
27     * Initialize the algorithm with a special run. This will initialize the
28     * event reader routines for all packet types.
29     */
30     void S4InitReader::Init(PamelaRun *run) {
31     logger->debug(_T("Initialize"));
32     SetInputStream(run);
33     run->WriteSubPacket(this, &s4Init, s4Init->Class());
34     }
35    
36     /**
37     * Unpack the S4Init event from an input file.
38     */
39 kusanagi 6.1 void S4InitReader::RunEvent(int EventNumber, long int dataLength) throw (WrongCRCException){
40     char subData[dataLength];
41     InputFile->read(subData, sizeof(subData));
42     s4Init->s4InitData = new TArrayC(dataLength, subData);
43 kusanagi 2.1 }
44    

  ViewVC Help
Powered by ViewVC 1.1.23