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

Annotation of /yoda/techmodel/S4AlarmReader.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 4.0 - (hide annotations) (download)
Sun Mar 6 04:33:02 2005 UTC (19 years, 8 months ago) by kusanagi
Branch: MAIN
CVS Tags: yodaPreTermistors2_1/00, YODA4_1/00, YODA4_0/04, YODA4_0/03, YODA4_0/02, YODA4_0/01, YODA4_3/02, YODA4_3/00, YODA4_3/01, YODA4_2/01, YODA4_2/00, YODA4_2/03, yodaPreTermistores2_0/00
Branch point for: PreThermistores2
Changes since 3.0: +0 -0 lines
Stable version 4.0 - 6 March 2005 - Maurizio Nagni

1 kusanagi 2.1
2     // Implementation of the S4AlarmReader class.
3    
4    
5     #define UINT unsigned int
6     #define BYTE unsigned char
7     #include <string>
8     #include <log4cxx/logger.h>
9     extern "C" {
10     #include "CRC.h"
11     }
12    
13     #include <fstream>
14     #include "stdio.h"
15     #include "ReaderAlgorithms.h"
16    
17     using namespace pamela;
18     using namespace pamela::techmodel;
19    
20     static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.S4AlarmReader"));
21    
22     /**
23     * Constructor.
24     */
25     S4AlarmReader::S4AlarmReader(void):
26     TechmodelAlgorithm(PacketType::S4Alarm, "S4AlarmReader") {
27     logger->debug(_T("Constructor"));
28     s4Alarm = new S4AlarmEvent();
29     }
30    
31     /**
32     * Get a string with the version info of the algorithm.
33     */
34     std::string S4AlarmReader::GetVersionInfo(void) const {
35     return
36     "$Trailer: /home/cvsmanager/yoda/techmodel/s4AlarmReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 kusanagi Exp $\n";
37     }
38    
39     /**
40     * Initialize the algorithm with a special run. This will initialize the
41     * event reader routines for all packet types.
42     */
43     void S4AlarmReader::Init(PamelaRun *run) {
44     SetInputStream(run);
45     run->WriteSubPacket(this, &s4Alarm, s4Alarm->Class());
46     logger->debug(_T("Initialize"));
47     }
48    
49     /**
50     * Unpack the S4Alarm event from an input file.
51     */
52     void S4AlarmReader::RunEvent(int EventNumber, long int length) throw (WrongCRCException){
53    
54    
55     }
56    

  ViewVC Help
Powered by ViewVC 1.1.23