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

Contents of /yoda/techmodel/Calib1_Ac2Reader.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 4.0 - (show 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: +2 -2 lines
Stable version 4.0 - 6 March 2005 - Maurizio Nagni

1 /** @file
2 * $Source: /home/cvsmanager/yoda/techmodel/Calib1_Ac2Reader.cpp,v $
3 * $Id: Calib1_Ac2Reader.cpp,v 3.0 2005/03/04 15:54:11 kusanagi Exp $
4 * $Author: kusanagi $
5 *
6 * Implementation of the Calib1_Ac2Reader class.
7 */
8
9 #include <string>
10 #include <log4cxx/logger.h>
11 #include <fstream>
12 #include "stdio.h"
13 extern "C" {
14 #include "CRC.h"
15 #include "forroutines/anticounter/AC.h"
16 extern int ACcalib(int length, unsigned char* calibpointer, struct calibstruct* calibpointer);
17 }
18
19 #include "ReaderAlgorithms.h"
20
21 using namespace pamela;
22 using namespace pamela::techmodel;
23
24 static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.Calib1_Ac2Reader"));
25
26 /**
27 * Constructor.
28 */
29 Calib1_Ac2Reader::Calib1_Ac2Reader(void):
30 TechmodelAlgorithm(PacketType::Calib1_Ac2, "Calib1_Ac2") {
31 logger->debug(_T("Constructor"));
32 calib1_Ac2 = new Calib1_Ac2Event();
33 }
34
35 /**
36 * Get a string with the version info of the algorithm.
37 */
38 std::string Calib1_Ac2Reader::GetVersionInfo(void) const {
39 return "$Header: /home/cvsmanager/yoda/techmodel/Calib1_Ac2Reader.cpp,v 3.0 2005/03/04 15:54:11 kusanagi Exp $\n";
40 }
41
42 /**
43 * Initialize the algorithm with a special run. This will initialize the
44 * event reader routines for all packet types.
45 */
46 void Calib1_Ac2Reader::Init(PamelaRun *run) {
47 logger->debug(_T("Initialize"));
48 SetInputStream(run);
49 run->WriteSubPacket(this, &calib1_Ac2, calib1_Ac2->Class());
50 }
51
52 /**
53 * Unpack the Calib1_Ac2Reader event from an input file.
54 */
55 void Calib1_Ac2Reader::RunEvent(int EventNumber, long int dataLength) throw (Exception){
56 /*
57
58 */
59
60 //delete [] subData;
61 }
62

  ViewVC Help
Powered by ViewVC 1.1.23