1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#ifndef CSCDQM_ClusterLocalMax_h
#define CSCDQM_ClusterLocalMax_h
#include <TObject.h>
namespace cscdqm {
/**
* @class ClusterLocalMax
* @brief Local Maximum of the Cluster
*/
class ClusterLocalMax {
public:
int Time;
int Strip;
ClusterLocalMax();
virtual ~ClusterLocalMax();
// ClassDef(ClusterLocalMax,1) //ClusterLocalMax
};
} // namespace cscdqm
#endif
|