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

Annotation of /yoda/techmodel/CalibTrk2Reader.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.3 - (hide annotations) (download)
Sat Jul 17 20:03:38 2004 UTC (20 years, 4 months ago) by kusanagi
Branch: MAIN
Changes since 1.2: +63 -49 lines
*** empty log message ***

1 kusanagi 1.1 /** @file
2 kusanagi 1.2 * $Source: /home/cvsmanager/yoda/techmodel/CalibTrk2Reader.cpp,v $
3 kusanagi 1.3 * $Id: CalibTrk2Reader.cpp,v 1.2 2004/07/06 13:31:18 kusanagi Exp $
4 kusanagi 1.1 * $Author: kusanagi $
5     *
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     #define UINT unsigned int
12     #define BYTE unsigned char
13     #include <string>
14     #include <log4cpp/Category.hh>
15     extern "C" {
16 kusanagi 1.3 #include "CRC.h"
17 kusanagi 1.1 //Passo il path verso la il file temporaneo
18     extern void trkcalibpkt_(int*, char*);
19    
20     //Struct per il passaggio di dati da e verso la chiamata fortran
21     extern struct {
22     int DAQmode[6];
23     int DSPnumber[6];
24     int calibnumber[6];
25     int ncalib_event[6];
26     int ped_l1[6];
27     int ped_l2[6];
28     int ped_l3[6];
29     int sig_l1[6];
30     int sig_l2[6];
31     int sig_l3[6];
32     int nbad_l1[6];
33     int nbad_l2[6];
34     int nbad_l3[6];
35     int cal_flag[6];
36     int checksum[6];
37     int DSPbad_par[6][3072];
38     float DSPped_par[6][3072];
39     float DSPsig_par[6][3072];
40     } trkcalib_;
41    
42     #include <dirent.h>
43     }
44    
45     #include <fstream>
46     #include "stdio.h"
47     #include "ReaderAlgorithms.h"
48    
49 kusanagi 1.2 #include "event/CalibTrk2Event.h"
50 kusanagi 1.1
51     using namespace pamela;
52     using namespace pamela::techmodel;
53    
54 kusanagi 1.2 static log4cpp::Category& cat = log4cpp::Category::getInstance("pamela.techmodel.CalibTrk2Reader");
55 kusanagi 1.1
56     /**
57     * Constructor.
58     */
59 kusanagi 1.2 CalibTrk2Reader::CalibTrk2Reader(void):
60     TechmodelAlgorithm(PacketType::CalibTrk2, "TechmodelCalibTrk2Reader") {
61 kusanagi 1.1 cat << log4cpp::Priority::DEBUG
62     << "Constructor "
63     << "\n " << log4cpp::CategoryStream::ENDLINE;
64 kusanagi 1.2 calibTrk2 = new CalibTrk2Event();
65 kusanagi 1.1 }
66    
67     /**
68     * Get a string with the version info of the algorithm.
69     */
70 kusanagi 1.2 std::string CalibTrk2Reader::GetVersionInfo(void) const {
71 kusanagi 1.1 return
72 kusanagi 1.3 "$Header: /home/cvsmanager/yoda/techmodel/CalibTrk2Reader.cpp,v 1.2 2004/07/06 13:31:18 kusanagi Exp $\n";
73 kusanagi 1.1 }
74    
75     /**
76     * Initialize the algorithm with a special run. This will initialize the
77     * event reader routines for all packet types.
78     */
79 kusanagi 1.2 void CalibTrk2Reader::Init(PamelaRun *run) {
80 kusanagi 1.1 SetInputStream(run);
81 kusanagi 1.2 run->WriteSubPacket(this, &calibTrk2, calibTrk2->Class());
82 kusanagi 1.1 }
83    
84     /**
85 kusanagi 1.2 * Unpack the CalibTrk2 event from an input file.
86 kusanagi 1.1 */
87 kusanagi 1.2 void CalibTrk2Reader::RunEvent(int EventNumber, long int length) {
88 kusanagi 1.1
89 kusanagi 1.3 char *subData;
90     char eventCRC[2];
91     UINT16 subCRC; //CRC of the data
92     UINT16 readCRC; //CRC read from the end of the subpacket
93     long int dataLength;
94    
95 kusanagi 1.1 //the 2 bytes subtracted belong to the final event CRC bytes
96 kusanagi 1.3 dataLength = length - (long int)2;
97 kusanagi 1.1
98 kusanagi 1.3 subData = new char[dataLength];
99 kusanagi 1.1 InputFile->read(subData, sizeof(unsigned char)*dataLength);
100 kusanagi 1.3 subCRC = CM_Compute_CRC16(0, (BYTE*)subData, dataLength);
101 kusanagi 1.1
102 kusanagi 1.3 //took the final CRC to compare it with the previous calculated CRC of the data
103     InputFile->read(eventCRC, sizeof(eventCRC));
104     readCRC = (((UINT16)(eventCRC[0]<<8))&0xFF00) + (((UINT16)eventCRC[1])&0x00FF);
105 kusanagi 1.1
106 kusanagi 1.3 if (subCRC == readCRC){
107     int ERROR;
108    
109     //Scrivo un file temporaneo per passarlo alla routine
110     //Speriamo di cambiare la routine per passargli un buffer.....
111     DIR *dirp;
112     std::string pathDir((char*)getenv("YODA_DATA"));
113     pathDir = pathDir + "/todatemp.dat";
114     FILE *pfile;
115     pfile = fopen((char*)pathDir.c_str(), "wb");
116     fwrite(subData, 1, dataLength, pfile);
117     fclose(pfile);
118    
119     //Call to the FORTRAN routin that unpack tracker events
120     trkcalibpkt_(&ERROR, (char*)pathDir.c_str());
121    
122     //delete the temporary file
123     remove((char*)pathDir.c_str());
124    
125     //Store the unpacked data
126     memcpy(calibTrk2->DAQmode, trkcalib_.DAQmode, sizeof(calibTrk2->DAQmode));
127     memcpy(calibTrk2->DSPnumber, trkcalib_.DSPnumber, sizeof(calibTrk2->DSPnumber));
128     memcpy(calibTrk2->calibnumber, trkcalib_.calibnumber, sizeof(calibTrk2->calibnumber));
129     memcpy(calibTrk2->DSPnumber, trkcalib_.ncalib_event, sizeof(calibTrk2->ncalib_event));
130     memcpy(calibTrk2->ped_l1, trkcalib_.ped_l1, sizeof(calibTrk2->ped_l1));
131     memcpy(calibTrk2->ped_l2, trkcalib_.ped_l2, sizeof(calibTrk2->ped_l2));
132     memcpy(calibTrk2->ped_l3, trkcalib_.ped_l3, sizeof(calibTrk2->ped_l3));
133     memcpy(calibTrk2->sig_l1, trkcalib_.sig_l1, sizeof(calibTrk2->sig_l1));
134     memcpy(calibTrk2->sig_l2, trkcalib_.sig_l2, sizeof(calibTrk2->sig_l2));
135     memcpy(calibTrk2->sig_l3, trkcalib_.sig_l3, sizeof(calibTrk2->sig_l3));
136     memcpy(calibTrk2->nbad_l1, trkcalib_.nbad_l1, sizeof(calibTrk2->nbad_l1));
137     memcpy(calibTrk2->nbad_l2, trkcalib_.nbad_l2, sizeof(calibTrk2->nbad_l2));
138     memcpy(calibTrk2->nbad_l3, trkcalib_.nbad_l3, sizeof(calibTrk2->nbad_l3));
139     memcpy(calibTrk2->cal_flag, trkcalib_.cal_flag, sizeof(calibTrk2->cal_flag));
140     memcpy(calibTrk2->checksum, trkcalib_.checksum, sizeof(calibTrk2->checksum));
141     memcpy(calibTrk2->DSPbad_par,trkcalib_.DSPbad_par, sizeof(calibTrk2->DSPbad_par));
142     memcpy(calibTrk2->DSPped_par,trkcalib_.DSPped_par, sizeof(calibTrk2->DSPped_par));
143     memcpy(calibTrk2->DSPsig_par,trkcalib_.DSPsig_par, sizeof(calibTrk2->DSPsig_par));
144    
145     cat << log4cpp::Priority::ERROR
146     << "Fortran77 function trkcalibpkt error code = " << ERROR
147     << "\n " << log4cpp::CategoryStream::ENDLINE;
148     free(subData);
149     } else {
150     cat << log4cpp::Priority::ERROR
151     << "Wrong CRC for CalibTrk2 Packet "
152     << "\n " << log4cpp::CategoryStream::ENDLINE;
153     }
154 kusanagi 1.1 }
155    

  ViewVC Help
Powered by ViewVC 1.1.23