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

Annotation of /yoda/techmodel/CalibTrk1Reader.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.2 - (hide annotations) (download)
Tue Jul 6 13:31:18 2004 UTC (20 years, 4 months ago) by kusanagi
Branch: MAIN
Changes since 1.1: +30 -30 lines
*** empty log message ***

1 kusanagi 1.1 /** @file
2 kusanagi 1.2 * $Source: /home/cvsmanager/yoda/techmodel/CalibTrk1Reader.cpp,v $
3     * $Id: CalibTrk1Reader.cpp,v 1.1 2004/07/06 12:31:55 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     //The int* return the error code
17     //The char* is the path to the temporary file
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     #include "event/PamelaRun.h"
49    
50 kusanagi 1.2 #include "event/CalibTrk1Event.h"
51 kusanagi 1.1
52     using namespace pamela;
53     using namespace pamela::techmodel;
54    
55 kusanagi 1.2 static log4cpp::Category& cat = log4cpp::Category::getInstance("pamela.techmodel.CalibTrk1Reader");
56 kusanagi 1.1
57     /**
58     * Constructor.
59     */
60 kusanagi 1.2 CalibTrk1Reader::CalibTrk1Reader(void):
61     TechmodelAlgorithm(PacketType::CalibTrk1, "TechmodelCalibTrk1Reader") {
62 kusanagi 1.1 cat << log4cpp::Priority::DEBUG
63     << "Constructor "
64     << "\n " << log4cpp::CategoryStream::ENDLINE;
65 kusanagi 1.2 calibTrk1 = new CalibTrk1Event();
66 kusanagi 1.1 }
67    
68     /**
69     * Get a string with the version info of the algorithm.
70     */
71 kusanagi 1.2 std::string CalibTrk1Reader::GetVersionInfo(void) const {
72 kusanagi 1.1 return
73 kusanagi 1.2 "$Header: /home/cvsmanager/yoda/techmodel/CalibTrk1Reader.cpp,v 1.1 2004/07/06 12:31:55 kusanagi Exp $\n";
74 kusanagi 1.1 }
75    
76     /**
77     * Initialize the algorithm with a special run. This will initialize the
78     * event reader routines for all packet types.
79     */
80 kusanagi 1.2 void CalibTrk1Reader::Init(PamelaRun *run) {
81 kusanagi 1.1 SetInputStream(run);
82 kusanagi 1.2 run->WriteSubPacket(this, &calibTrk1, calibTrk1->Class());
83 kusanagi 1.1 }
84    
85     /**
86     * Unpack the CalibTrk event from an input file.
87     */
88     //void CalibTrkReader::RunEvent(int EventNumber, long int length, char *subData) {
89 kusanagi 1.2 void CalibTrk1Reader::RunEvent(int EventNumber, long int length) {
90 kusanagi 1.1 int ERROR;
91    
92     //the 2 bytes subtracted belong to the final event CRC bytes
93     long int dataLength = length;// - (long int)2;
94    
95     char *subData = new char[dataLength];
96     InputFile->read(subData, sizeof(unsigned char)*dataLength);
97    
98     //Skip the last two crc bytes already checked in UnpackPscu
99     //This part have to be refactored!!!! too bad......
100     InputFile->seekg((long int)2, std::ios::cur);
101    
102     //Scrivo un file temporaneo per passarlo alla routine
103     //Speriamo di cambiare la routine per passargli un buffer.....
104     DIR *dirp;
105     std::string pathDir((char*)getenv("YODA_DATA"));
106     pathDir = pathDir + "/";
107     pathDir = pathDir + PamelaRun::GetRunName(EventNumber) + "/todatemp.dat";
108     FILE *pfile;
109     pfile = fopen((char*)pathDir.c_str(), "wb");
110     fwrite(subData, 1, dataLength, pfile);
111     fclose(pfile);
112    
113     //Call to the FORTRAN routin that unpack tracker events
114     trkcalibpkt_(&ERROR, (char*)pathDir.c_str());
115    
116     remove((char*)pathDir.c_str());
117    
118     //Store the unpacked data
119 kusanagi 1.2 memcpy(calibTrk1->DAQmode, trkcalib_.DAQmode, sizeof(calibTrk1->DAQmode));
120     memcpy(calibTrk1->DSPnumber, trkcalib_.DSPnumber, sizeof(calibTrk1->DSPnumber));
121     memcpy(calibTrk1->calibnumber, trkcalib_.calibnumber, sizeof(calibTrk1->calibnumber));
122     memcpy(calibTrk1->DSPnumber, trkcalib_.ncalib_event, sizeof(calibTrk1->ncalib_event));
123     memcpy(calibTrk1->ped_l1, trkcalib_.ped_l1, sizeof(calibTrk1->ped_l1));
124     memcpy(calibTrk1->ped_l2, trkcalib_.ped_l2, sizeof(calibTrk1->ped_l2));
125     memcpy(calibTrk1->ped_l3, trkcalib_.ped_l3, sizeof(calibTrk1->ped_l3));
126     memcpy(calibTrk1->sig_l1, trkcalib_.sig_l1, sizeof(calibTrk1->sig_l1));
127     memcpy(calibTrk1->sig_l2, trkcalib_.sig_l2, sizeof(calibTrk1->sig_l2));
128     memcpy(calibTrk1->sig_l3, trkcalib_.sig_l3, sizeof(calibTrk1->sig_l3));
129     memcpy(calibTrk1->nbad_l1, trkcalib_.nbad_l1, sizeof(calibTrk1->nbad_l1));
130     memcpy(calibTrk1->nbad_l2, trkcalib_.nbad_l2, sizeof(calibTrk1->nbad_l2));
131     memcpy(calibTrk1->nbad_l3, trkcalib_.nbad_l3, sizeof(calibTrk1->nbad_l3));
132     memcpy(calibTrk1->cal_flag, trkcalib_.cal_flag, sizeof(calibTrk1->cal_flag));
133     memcpy(calibTrk1->checksum, trkcalib_.checksum, sizeof(calibTrk1->checksum));
134     memcpy(calibTrk1->DSPbad_par,trkcalib_.DSPbad_par, sizeof(calibTrk1->DSPbad_par));
135     memcpy(calibTrk1->DSPped_par,trkcalib_.DSPped_par, sizeof(calibTrk1->DSPped_par));
136     memcpy(calibTrk1->DSPsig_par,trkcalib_.DSPsig_par, sizeof(calibTrk1->DSPsig_par));
137 kusanagi 1.1
138     cat << log4cpp::Priority::ERROR
139     << "Fortran77 function trkcalibpkt error code = " << ERROR
140     << "\n " << log4cpp::CategoryStream::ENDLINE;
141     free(subData);
142     }
143    

  ViewVC Help
Powered by ViewVC 1.1.23