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

Diff of /yoda/techmodel/EventReader.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 6.11 by mocchiut, Tue Nov 14 15:41:41 2006 UTC revision 6.12 by mocchiut, Thu Nov 16 10:49:40 2006 UTC
# Line 1  Line 1 
1  /** @file  /** @file
2   * $Author: mocchiut $   * $Author: mocchiut $
3   * $Date: 2006/11/13 11:45:49 $   * $Date: 2006/11/14 15:41:41 $
4   * $Revision: 6.10 $   * $Revision: 6.11 $
5   *   *
6   * Implementation of the functions of a sample Algorithm class.   * Implementation of the functions of a sample Algorithm class.
7   * This file can be used as a templace to develop your own algorithm.   * This file can be used as a templace to develop your own algorithm.
# Line 87  EventReader::EventReader(int packetsLimi Line 87  EventReader::EventReader(int packetsLimi
87   */   */
88  std::string EventReader::GetVersionInfo(void) const {  std::string EventReader::GetVersionInfo(void) const {
89    return    return
90      "$Header: /afs/ba.infn.it/user/pamela/src/CVS/yoda/techmodel/EventReader.cpp,v 6.10 2006/11/13 11:45:49 mocchiut Exp $\n";      "$Header: /afs/ba.infn.it/user/pamela/src/CVS/yoda/techmodel/EventReader.cpp,v 6.11 2006/11/14 15:41:41 mocchiut Exp $\n";
91  }  }
92    
93  /**  /**
# Line 120  void EventReader::RunEvent(int EventNumb Line 120  void EventReader::RunEvent(int EventNumb
120    stringstream oss;    stringstream oss;
121    int step = 0;    int step = 0;
122    const PacketType* type;    const PacketType* type;
123    while (InputFile->good() && !InputFile->eof() && ((step++ < maxPackets) || (maxPackets == 0))){    while ( InputFile->good() && !InputFile->eof() && ((step++ < maxPackets) || (maxPackets == 0))){
124      try {      try {
125        if (FindStart()) {        if (FindStart()) {
126              UnpackPscuHeader();              UnpackPscuHeader();
# Line 201  void EventReader::RunEvent(int EventNumb Line 201  void EventReader::RunEvent(int EventNumb
201      oss << "----endPck " << Header->GetPscuHeader()->GetCounter() << "\n";      oss << "----endPck " << Header->GetPscuHeader()->GetCounter() << "\n";
202      logger->info(oss.str().c_str());      logger->info(oss.str().c_str());
203    }    }
204      if ( InputFile->fail() || InputFile->bad() ) printf(" ERROR READING RAW FILE! \n"); // E. Mocchiutti
205    
206      Header->GetCounter()->PrintCounters();      Header->GetCounter()->PrintCounters();
207      //if (corruptedPacketFile.is_open()) corruptedPacketFile.close();      //if (corruptedPacketFile.is_open()) corruptedPacketFile.close();
208  }  }
# Line 222  void EventReader::UnpackPscuHeader(void) Line 224  void EventReader::UnpackPscuHeader(void)
224    unsigned int  OrbitalTime  = (((UINT32)buff[8]<<24)&0xFF000000) + (((UINT32)buff[9]<<16)&0x00FF0000) +  (((UINT32)buff[10]<<8)&0x0000FF00) + (((UINT32)buff[11])&0x000000FF);    unsigned int  OrbitalTime  = (((UINT32)buff[8]<<24)&0xFF000000) + (((UINT32)buff[9]<<16)&0x00FF0000) +  (((UINT32)buff[10]<<8)&0x0000FF00) + (((UINT32)buff[11])&0x000000FF);
225    unsigned int  PacketLenght = (((UINT32)buff[12]<<16)&0x00FF0000) +  (((UINT32)buff[13]<<8)&0x0000FF00) + (((UINT32)buff[14])&0x000000FF);    unsigned int  PacketLenght = (((UINT32)buff[12]<<16)&0x00FF0000) +  (((UINT32)buff[13]<<8)&0x0000FF00) + (((UINT32)buff[14])&0x000000FF);
226    unsigned char CRC          = buff[15];    unsigned char CRC          = buff[15];
227    unsigned char FileOffset   = buff[15];    unsigned char FileOffset   = 0;
228    
229    
230    if (Counter < prevPckCounter){    if (Counter < prevPckCounter){
# Line 264  void EventReader::UnpackPscuHeader(void) Line 266  void EventReader::UnpackPscuHeader(void)
266      //plus the CRC legth (which varies for each type of packet)      //plus the CRC legth (which varies for each type of packet)
267      Header->GetPscuHeader()->SetPacketLenght(PacketLenght);      Header->GetPscuHeader()->SetPacketLenght(PacketLenght);
268      Header->GetPscuHeader()->SetCRC(CRC);      Header->GetPscuHeader()->SetCRC(CRC);
269      Header->GetPscuHeader()->SetFileOffset(((long int)(InputFile->tellg()) - 16));      Header->GetPscuHeader()->SetFileOffset((unsigned long int)(InputFile->tellg() - 16));
270    } else {    } else {
271       /*Here i should extract the block of Data for later analysis */       /*Here i should extract the block of Data for later analysis */
272      InputFile->seekg(-(13), std::ios::cur);      InputFile->seekg(-(13), std::ios::cur);

Legend:
Removed from v.6.11  
changed lines
  Added in v.6.12

  ViewVC Help
Powered by ViewVC 1.1.23