1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef CondFormatsRPCObjectsDBSpecToDetUnit_H
#define CondFormatsRPCObjectsDBSpecToDetUnit_H
#include "DataFormats/DetId/interface/DetId.h"
struct ChamberLocationSpec;
struct FebLocationSpec;
class DBSpecToDetUnit {
public:
uint32_t operator()(const ChamberLocationSpec& location, const FebLocationSpec& feb);
};
#endif
|