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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
#ifndef CaloOnlineTools_HcalOnlineDb_HcalAssistant_h
#define CaloOnlineTools_HcalOnlineDb_HcalAssistant_h
// -*- C++ -*-
//
// Package: HcalOnlineDb
// Class : HcalAssistant
//
/**\class HcalAssistant HcalAssistant.h CaloOnlineTools/HcalOnlineDb/interface/HcalAssistant.h
Description: Various helper functions
Usage:
<usage>
*/
//
// Original Author: Gena Kukartsev, kukarzev@fnal.gov
// Created: Thu Jul 16 11:39:31 CEST 2009
//
#include <iostream>
#include <string>
#include <vector>
#include <map>
#include "DataFormats/HcalDetId/interface/HcalSubdetector.h"
#include "DataFormats/HcalDetId/interface/HcalZDCDetId.h"
#ifndef DATAFORMATS_HCALDETID_HCALSUBDETECTOR_H
#define DATAFORMATS_HCALDETID_HCALSUBDETECTOR_H
enum HcalSubdetector {
HcalEmpty = 0,
HcalBarrel = 1,
HcalEndcap = 2,
HcalOuter = 3,
HcalForward = 4,
HcalTriggerTower = 5,
HcalOther = 7
};
enum HcalOtherSubdetector { HcalOtherEmpty = 0, HcalCalibration = 2 };
#endif
class HcalAssistant {
public:
friend class HcalChannelQualityXml;
HcalAssistant();
virtual ~HcalAssistant();
int addQuotes();
std::string getRandomQuote(void);
std::string getUserName(void);
HcalSubdetector getSubdetector(std::string _det);
std::string getSubdetectorString(HcalSubdetector _det);
HcalZDCDetId::Section getZDCSection(std::string _section);
std::string getZDCSectionString(HcalZDCDetId::Section _section);
int getListOfChannelsFromDb();
int getSubdetector(int _rawid);
int getIeta(int _rawid);
int getIphi(int _rawid);
int getDepth(int _rawid);
int getRawId(HcalSubdetector _det, int _ieta, int _iphi, int _depth);
int a_to_i(char* inbuf);
private:
std::vector<std::string> quotes;
std::map<int, int> geom_to_rawid; // geom hash is the hey
std::map<int, int> rawid_to_geom; // rawId is the key
bool listIsRead; // were channels read from OMDS?
//
//_____ encode HCAL geometry channel in a single integer hash
// not relying on HcalDetId
int getGeomId(HcalSubdetector _det, int _ieta, int _iphi, int _depth);
int getHcalIeta(int _geomId);
int getHcalIphi(int _geomId);
int getHcalDepth(int _geomId);
HcalSubdetector getHcalSubdetector(int _geomId);
std::string getSubdetectorString(int _geomId);
int getRawId(int _geomId);
int getRawIdFromCmssw(int _geomId);
int getGeomId(int _rawid);
};
#endif
|