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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1.1.1 - (hide annotations) (download) (vendor branch)
Tue Sep 23 07:20:24 2008 UTC (16 years, 2 months ago) by mocchiut
Branch: v0r00, MAIN
CVS Tags: v1r02, v1r00, v1r01, start, v10RED, v9r00, v9r01, HEAD
Changes since 1.1: +0 -0 lines
Imported sources, 23/09/2008

1 mocchiut 1.1 /** @file
2     * $Author: messineo $
3     * $Date: 2008-03-04 18:09:31 $
4     * $Revision: 1.4 $
5     *
6     * Implementation of the CalInitReader class.
7     */
8    
9     #include "ReaderAlgorithms.h"
10    
11     using namespace pamela::techmodel;
12    
13     /**
14     * Constructor.
15     */
16     CalInitReader::CalInitReader(void):
17     TechmodelAlgorithm(PacketType::CalInit, "TechmodelCalInitReader") {
18     calInit = new CalInitEvent();
19     }
20    
21     /**
22     * Get a string with the version info of the algorithm.
23     */
24     std::string CalInitReader::GetVersionInfo(void) const {
25     return
26     "$Trailer: /home/cvsmanager/yoda/techmodel/CalInitReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 Maurizio Nagni Exp $\n";
27     }
28    
29     /**
30     * Initialize the algorithm with a special run. This will initialize the
31     * event reader routines for all packet types.
32     */
33     void CalInitReader::Init(PamelaRun *run) {
34     run->WriteSubPacket(this, &calInit, calInit->Class());
35     }
36    
37     /**
38     * Unpack the CalInit event
39     * The CPU does not add any CRC control at the packet end.
40     * @param EventNumber
41     * @param dataLength
42     */
43     void CalInitReader::PKT_RunEvent(char* subData, long int dataLength) throw (WrongCRCException){
44     calInit->calInitData = new TArrayC(dataLength, subData);
45     }

  ViewVC Help
Powered by ViewVC 1.1.23