1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
// -*- C++ -*-
//
// Package: CMSSW/CondFormats/Alignment
// Class : T_EventSetup_OpticalAlignments.cc
//
// Implementation:
// create all the 'infrastructure' needed to get into the Context
//
// Author: Chris Jones
// Created: Mon Apr 18 16:42:52 EDT 2005
// $Id: T_EventSetup_OpticalAlignments.cc,v 1.7 2006/11/20 10:14:08 xiezhen Exp $
//
// system include files
// user include files
#include "CondFormats/OptAlignObjects/interface/OpticalAlignments.h"
#include "CondFormats/OptAlignObjects/interface/CSCZSensors.h"
#include "CondFormats/OptAlignObjects/interface/CSCRSensors.h"
#include "CondFormats/OptAlignObjects/interface/MBAChBenchCalPlate.h"
#include "CondFormats/OptAlignObjects/interface/MBAChBenchSurveyPlate.h"
#include "CondFormats/OptAlignObjects/interface/Inclinometers.h"
#include "CondFormats/OptAlignObjects/interface/PXsensors.h"
#include "FWCore/Utilities/interface/typelookup.h"
//using Alignments;
TYPELOOKUP_DATA_REG(OpticalAlignments);
TYPELOOKUP_DATA_REG(CSCZSensors);
TYPELOOKUP_DATA_REG(CSCRSensors);
TYPELOOKUP_DATA_REG(MBAChBenchCalPlate);
TYPELOOKUP_DATA_REG(MBAChBenchSurveyPlate);
TYPELOOKUP_DATA_REG(Inclinometers);
TYPELOOKUP_DATA_REG(PXsensors);
|