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

Annotation of /yoda/techmodel/CalibTofReader.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 6.3 - (hide annotations) (download)
Fri Sep 29 10:19:20 2006 UTC (18 years, 2 months ago) by mocchiut
Branch: MAIN
CVS Tags: YODA6_3/19, YODA6_3/18, YODA6_3/13, YODA6_3/12, YODA6_3/11, YODA6_3/17, YODA6_3/16, YODA6_3/15, YODA6_3/14, YODA6_3/20, HEAD
Changes since 6.2: +4 -3 lines
Last event bug fixed, compilation warnings/errors fixed

1 kusanagi 1.1 /** @file
2 mocchiut 6.3 * $Source: /afs/ba.infn.it/user/pamela/src/CVS/yoda/techmodel/CalibTofReader.cpp,v $
3     * $Id: CalibTofReader.cpp,v 6.2 2006/05/30 19:10:03 kusanagi Exp $
4 kusanagi 6.0 * $Author: kusanagi $
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    
12     #include "ReaderAlgorithms.h"
13    
14     using namespace pamela::techmodel;
15    
16 kusanagi 1.2 static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.CalibTofReader"));
17 kusanagi 1.1
18     /**
19     * Constructor.
20     */
21     CalibTofReader::CalibTofReader(void):
22     TechmodelAlgorithm(PacketType::Log, "TechmodelCalibTofReader") {
23 kusanagi 1.2 logger->debug(_T("Constructor"));
24 kusanagi 6.1 calibTof = new CalibTofEvent();
25 kusanagi 1.1 }
26    
27     /**
28     * Get a string with the version info of the algorithm.
29     */
30     std::string CalibTofReader::GetVersionInfo(void) const {
31     return
32 mocchiut 6.3 "$Header: /afs/ba.infn.it/user/pamela/src/CVS/yoda/techmodel/CalibTofReader.cpp,v 6.2 2006/05/30 19:10:03 kusanagi Exp $\n";
33 kusanagi 1.1 }
34    
35     /**
36     * Initialize the algorithm with a special run. This will initialize the
37     * event reader routines for all packet types.
38     */
39     void CalibTofReader::Init(PamelaRun *run) {
40 kusanagi 1.2 logger->debug(_T("Initialize"));
41 kusanagi 1.1 SetInputStream(run);
42 kusanagi 6.1 run->WriteSubPacket(this, &calibTof, calibTof->Class());
43 kusanagi 1.1 }
44    
45     /**
46     * Unpack the CalibTof event from an input file.
47     */
48 kusanagi 6.1 void CalibTofReader::RunEvent(int EventNumber, long int dataLength) throw (Exception){
49     char subData[dataLength];
50 mocchiut 6.3 memset(subData, 0, dataLength*sizeof(char));
51 kusanagi 6.1 InputFile->read(subData, sizeof(subData));
52     calibTof->calibTofData = new TArrayC(dataLength, subData);
53 kusanagi 1.1 }
54    

  ViewVC Help
Powered by ViewVC 1.1.23