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

Annotation of /yoda/techmodel/TechmodelFilter.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 4.0 - (hide annotations) (download)
Sun Mar 6 04:33:02 2005 UTC (20 years, 9 months ago) by kusanagi
Branch: MAIN
CVS Tags: YODA4_2/01, YODA4_2/00, YODA4_2/03, YODA4_0/04, YODA4_1/00, yodaPreTermistors2_1/00, YODA4_3/02, YODA4_3/00, YODA4_3/01, YODA4_0/03, YODA4_0/02, YODA4_0/01, yodaPreTermistores2_0/00
Branch point for: PreThermistores2
Changes since 3.0: +0 -0 lines
Stable version 4.0 - 6 March 2005 - Maurizio Nagni

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