1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef DQM_SiStripCommon_ExtractTObject_H
#define DQM_SiStripCommon_ExtractTObject_H
#include "DQMServices/Core/interface/DQMStore.h"
#include <string>
/** */
template <class T>
class ExtractTObject {
public:
typedef dqm::legacy::MonitorElement MonitorElement;
static T* extract(MonitorElement* me);
};
#endif // DQM_SiStripCommon_ExtractTObject_H
|