Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-09-07 04:37:04

0001 #ifndef INTERFACE_PROCESSINPUTSIGNAL_H
0002 #define INTERFACE_PROCESSINPUTSIGNAL_H 1
0003 
0004 // Include files
0005 #include "L1Trigger/RPCTechnicalTrigger/interface/RPCInputSignal.h"
0006 
0007 #include <map>
0008 
0009 /** @class ProcessInputSignal ProcessInputSignal.h interface/ProcessInputSignal.h
0010  *  
0011  *
0012  *  @author Andres Osorio
0013  *
0014  *  email: aosorio@uniandes.edu.co
0015  *
0016  *  @date   2008-10-10
0017  */
0018 class ProcessInputSignal {
0019 public:
0020   virtual ~ProcessInputSignal() {}
0021 
0022   virtual int next() = 0;
0023 
0024   virtual RPCInputSignal* retrievedata() = 0;
0025 
0026 protected:
0027 private:
0028 };
0029 #endif  // INTERFACE_PROCESSINPUTSIGNAL_H