#ifndef __OUTPUT_TO_L1_TABLE_CLASS_09_13_2006__
#define __OUTPUT_TO_L1_TABLE_CLASS_09_13_2006__

/**
    @file OutputToL1Table.h
    @author Brian Magill
    @creation date 9/13/2006
    
    @brief base class for extracting information from an Event Class
    
*/

#include "Event.h"

class OutputToL1Table
{

public:
    
    virtual ~OutputToL1Table() { };

    virtual void operator() (Event &rhs) = 0;

};

#endif