//----------------------------------------------------------- // File and Version Information: // $Id$ // // Description: // Policy class for the digitizition of the TPC in the ADC module // // // Environment: // Software developed for the PANDA Detector at FAIR. // // Author List: // Sebastian Neubert TUM (original author) // // //----------------------------------------------------------- #ifndef TPCDIGITIZATIONPOLICY_HH #define TPCDIGITIZATIONPOLICY_HH // Collaborating Class Headers ------- #include using std::vector; // Collaborating Class Declarations -- class TpcSample; class TpcSignal; class TpcFrontend; class TpcAbsPulseshape; struct TpcDigitizationPolicy { void Digitize(vector< TpcSignal* >* SignalVector, vector< TpcSample* >* SampleVector, const TpcFrontend* Frontend, const TpcAbsPulseshape* Pulseshape); }; #endif //-------------------------------------------------------------- // $Log$ //--------------------------------------------------------------