1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/****************************************************************************
*
* This is a part of CTPPS offline software.
* Authors:
* Nicola Minafra (nicola.minafra@cern.ch)
* Mateusz Szpyrka (mateusz.szpyrka@cern.ch)
*
****************************************************************************/
#ifndef DataFormats_CTPPSReco_TotemTimingLocalTrack
#define DataFormats_CTPPSReco_TotemTimingLocalTrack
#include "DataFormats/CTPPSReco/interface/CTPPSTimingLocalTrack.h"
//----------------------------------------------------------------------------------------------------
class TotemTimingLocalTrack : public CTPPSTimingLocalTrack {
public:
using CTPPSTimingLocalTrack::CTPPSTimingLocalTrack;
// no specific class members yet
};
#endif
|