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

Annotation of /yoda/techmodel/TechmodelFilter.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 4.4 - (hide annotations) (download)
Sat May 28 10:44:11 2005 UTC (20 years, 6 months ago) by kusanagi
Branch: MAIN
Changes since 4.0: +0 -0 lines
Main features of this release are:
- updated classes documentations;
- major changes on the calibration fortran routine for the calorimeter
- update on the TMTC thermistors
- removed old classes as CalibTrkBoth and CalibTrd

1 kusanagi 2.1
2     // Implementation of the TechmodelFilter class.
3    
4    
5     #include <log4cxx/logger.h>
6     #include <TechmodelFilter.h>
7    
8    
9     using namespace pamela;
10     using namespace pamela::techmodel;
11    
12     static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.TechmodelFilter"));
13    
14     /**
15     * Constructor.
16     */
17     TechmodelFilter::TechmodelFilter(list<string> *userConstrains):
18     Filter() {
19     logger->debug(_T("Constructor"));
20     forbiddenPackets = userConstrains;
21     }
22    
23    
24     std::string TechmodelFilter::GetVersionInfo(void) const {
25     return
26     "$Trailer: /home/cvsmanager/yoda/techmodel/TechmodelFilter.cpp,v 1.1.1.1 2004/07/06 12:20:23 kusanagi Exp $\n";
27     }
28    
29    
30     void TechmodelFilter::Init() {
31     logger->debug(_T("Initialize"));
32     }
33    
34     bool TechmodelFilter::CheckPacket(PacketType* packet) {
35     logger->debug(_T("check"));
36     //if (packet->GetName())
37     return true;
38     }
39    
40     ClassImp(TechmodelFilter)

  ViewVC Help
Powered by ViewVC 1.1.23