CMS 3D CMS Logo

List of all members | Public Member Functions | Protected Attributes
RPCAMCLinkMapHandler Class Reference

#include <RPCAMCLinkMapHandler.h>

Inheritance diagram for RPCAMCLinkMapHandler:
popcon::PopConSourceHandler< RPCAMCLinkMap >

Public Member Functions

void getNewObjects () override
 
std::string id () const override
 
 RPCAMCLinkMapHandler (edm::ParameterSet const &config)
 
 ~RPCAMCLinkMapHandler () override
 
- Public Member Functions inherited from popcon::PopConSourceHandler< RPCAMCLinkMap >
void initialize (const cond::persistency::Session &dbSession, cond::TagInfo_t const &tagInfo, cond::LogDBEntry_t const &logDBEntry)
 
Ref lastPayload () const
 
cond::LogDBEntry_t const & logDBEntry () const
 
std::pair< Container const *, std::string const > operator() (const cond::persistency::Session &session, cond::TagInfo_t const &tagInfo, cond::LogDBEntry_t const &logDBEntry) const
 
 PopConSourceHandler ()
 
Container const & returnData ()
 
cond::TagInfo_t const & tagInfo () const
 
std::string const & userTextLog () const
 
virtual ~PopConSourceHandler ()
 

Protected Attributes

std::string data_tag_
 
std::string id_
 
std::string input_file_
 
unsigned int n_sectors_
 
cond::Time_t since_run_
 
std::string txt_file_
 
bool wheel_not_side_
 
std::vector< int > wos_fed_
 
std::vector< std::vector< int > > wos_sector_amc_
 
- Protected Attributes inherited from popcon::PopConSourceHandler< RPCAMCLinkMap >
Container m_iovs
 
std::vector< std::pair< RPCAMCLinkMap *, Time_t > > m_to_transfer
 
std::string m_userTextLog
 

Additional Inherited Members

- Public Types inherited from popcon::PopConSourceHandler< RPCAMCLinkMap >
typedef std::map< Time_t, std::shared_ptr< RPCAMCLinkMap > > Container
 
typedef std::unique_ptr< RPCAMCLinkMapRef
 
typedef PopConSourceHandler< RPCAMCLinkMapself
 
typedef cond::Time_t Time_t
 
typedef RPCAMCLinkMap value_type
 
- Protected Member Functions inherited from popcon::PopConSourceHandler< RPCAMCLinkMap >
cond::persistency::SessiondbSession () const
 

Detailed Description

Definition at line 17 of file RPCAMCLinkMapHandler.h.

Constructor & Destructor Documentation

◆ RPCAMCLinkMapHandler()

RPCAMCLinkMapHandler::RPCAMCLinkMapHandler ( edm::ParameterSet const &  config)

Definition at line 14 of file RPCAMCLinkMapHandler.cc.

References Exception, n_sectors_, nano_mu_digi_cff::sector, wos_fed_, and wos_sector_amc_.

15  : id_(config.getParameter<std::string>("identifier")),
16  data_tag_(config.getParameter<std::string>("dataTag")),
17  since_run_(config.getParameter<unsigned long long>("sinceRun")),
18  input_file_(config.getParameter<edm::FileInPath>("inputFile").fullPath()),
19  wheel_not_side_(config.getParameter<bool>("wheelNotSide")),
20  wos_fed_(config.getParameter<std::vector<int> >("wheelOrSideFED")),
21  n_sectors_(config.getParameter<unsigned int>("nSectors")),
22  wos_sector_amc_(wos_fed_.size(), std::vector<int>(n_sectors_, 0)),
23  txt_file_(config.getUntrackedParameter<std::string>("txtFile", "")) {
24  std::vector<long long> wos_sector_amc_packed(config.getParameter<std::vector<long long> >("wheelOrSideSectorAMC"));
25 
26  if (wos_fed_.size() != wos_sector_amc_packed.size()) {
27  throw cms::Exception("RPCAMCLinkMapHandler") << "Refuse to handle inconsistent input: "
28  << "sizes of wheelOrSideFED and wheelOrSideSectorAMC don't match";
29  }
30 
31  std::vector<std::vector<int> >::iterator sector_amc = wos_sector_amc_.begin();
32  for (std::vector<long long>::const_iterator sector_amc_packed = wos_sector_amc_packed.begin();
33  sector_amc_packed != wos_sector_amc_packed.end();
34  ++sector_amc_packed, ++sector_amc) {
35  for (unsigned int sector = 0; sector < n_sectors_; ++sector) {
36  sector_amc->at(sector) = ((*sector_amc_packed) >> (4 * (n_sectors_ - sector - 1))) & 0xf;
37  }
38  }
39 }
std::string fullPath() const
Definition: FileInPath.cc:161
Definition: config.py:1
std::vector< std::vector< int > > wos_sector_amc_
std::vector< int > wos_fed_

◆ ~RPCAMCLinkMapHandler()

RPCAMCLinkMapHandler::~RPCAMCLinkMapHandler ( )
override

Definition at line 41 of file RPCAMCLinkMapHandler.cc.

41 {}

Member Function Documentation

◆ getNewObjects()

void RPCAMCLinkMapHandler::getNewObjects ( )
overridevirtual

Implements popcon::PopConSourceHandler< RPCAMCLinkMap >.

Definition at line 43 of file RPCAMCLinkMapHandler.cc.

References conv, Exception, input_file_, cond::TagInfo_t::lastInterval, mps_splice::line, popcon::PopConSourceHandler< RPCAMCLinkMap >::m_to_transfer, n_sectors_, GetRecoTauVFromDQM_MC_cff::next, RPCLBLinkNameParser::parse(), nano_mu_digi_cff::sector, cond::Iov_t::since, since_run_, AlCaHLTBitMon_QueryRunRegistry::string, popcon::PopConSourceHandler< RPCAMCLinkMap >::tagInfo(), txt_file_, makeMuonMisalignmentScenario::wheel, wheel_not_side_, wos_fed_, and wos_sector_amc_.

43  {
44  edm::LogInfo("RPCAMCLinkMapHandler") << "getNewObjects";
45  cond::TagInfo_t const& tag_info = tagInfo();
46  if (since_run_ < tag_info.lastInterval.since) {
47  throw cms::Exception("RPCAMCLinkMapHandler") << "Refuse to create RPCAMCLinkMap for run " << since_run_
48  << ", older than most recent tag" << tag_info.lastInterval.since;
49  }
50 
51  std::string amc_name, link_name;
52  unsigned int wos, sector, amc_number, amc_input;
53 
54  std::unique_ptr<RPCAMCLinkMap> amc_link_map_object(new RPCAMCLinkMap());
55  RPCAMCLinkMap::map_type& amc_link_map = amc_link_map_object->getMap();
56  RPCLBLink lb_link;
57 
59  std::istringstream conv;
60 
61  std::ifstream input_file(input_file_);
62 
63  input_file >> amc_name >> amc_input >> link_name;
64  std::getline(input_file, line);
65 
66  while (input_file) {
67  // parse AMC Slot Name - no checking: failure is an error
68  if (wheel_not_side_) { // wheel
69  std::string::size_type pos(2), next(2); // skip YB
70  int wheel;
71  next = amc_name.find_first_not_of("+-0123456789", pos);
72  conv.clear();
73  conv.str(amc_name.substr(pos, next - pos));
74  conv >> wheel;
75  wos = wheel + 2;
76 
77  pos = next + 2;
78  next = amc_name.find_first_not_of("+-0123456789", pos);
79  if (next == std::string::npos)
80  next = amc_name.size();
81  conv.clear();
82  conv.str(amc_name.substr(pos, next - pos));
83  conv >> sector;
84  } else { // side
85  wos = (amc_name.at(4) == 'n' ? 0 : 1); // skip CPPF or OMTF
86  conv.clear();
87  conv.str(amc_name.substr(5, 1));
88  conv >> sector;
89  }
90 
91  if (sector > n_sectors_) {
92  throw cms::Exception("RPCAMCLinkMapHandler")
93  << "Found sector greater than the number of sectors: " << sector << " > " << n_sectors_;
94  }
95 
96  if (wos >= wos_fed_.size()) {
97  throw cms::Exception("RPCAMCLinkMapHandler")
98  << "Found " << (wheel_not_side_ ? "wheel" : "side") << " outside range: " << wos << " >= " << wos_fed_.size();
99  }
100 
101  amc_number = wos_sector_amc_.at(wos).at(sector - 1);
102 
103  RPCLBLinkNameParser::parse(link_name, lb_link);
104 
105  amc_link_map.insert(std::pair<RPCAMCLink, RPCLBLink>(RPCAMCLink(wos_fed_.at(wos), amc_number, amc_input), lb_link));
106 
107  input_file >> amc_name >> amc_input >> link_name;
108  std::getline(input_file, line);
109  }
110  input_file.close();
111 
112  if (!txt_file_.empty()) {
113  edm::LogInfo("RPCAMCLinkMapHandler") << "Fill txtFile";
114  std::ofstream ofstream(txt_file_);
115  for (auto const link : amc_link_map) {
116  ofstream << link.first << ": " << link.second << std::endl;
117  }
118  }
119 
120  edm::LogInfo("RPCAMCLinkMapHandler") << "Add to transfer list";
121  m_to_transfer.push_back(std::make_pair(amc_link_map_object.release(), since_run_));
122 }
Iov_t lastInterval
Definition: Types.h:73
Time_t since
Definition: Types.h:53
uint16_t size_type
std::vector< std::pair< RPCAMCLinkMap *, Time_t > > m_to_transfer
std::map< RPCAMCLink, RPCLBLink > map_type
Definition: RPCAMCLinkMap.h:13
Log< level::Info, false > LogInfo
EPOS::IO_EPOS conv
std::vector< std::vector< int > > wos_sector_amc_
static void parse(std::string const &name, RPCLBLink &lb_link)
std::vector< int > wos_fed_

◆ id()

std::string RPCAMCLinkMapHandler::id ( ) const
overridevirtual

Implements popcon::PopConSourceHandler< RPCAMCLinkMap >.

Definition at line 124 of file RPCAMCLinkMapHandler.cc.

References id_.

124 { return id_; }

Member Data Documentation

◆ data_tag_

std::string RPCAMCLinkMapHandler::data_tag_
protected

Definition at line 27 of file RPCAMCLinkMapHandler.h.

◆ id_

std::string RPCAMCLinkMapHandler::id_
protected

Definition at line 26 of file RPCAMCLinkMapHandler.h.

Referenced by id().

◆ input_file_

std::string RPCAMCLinkMapHandler::input_file_
protected

Definition at line 30 of file RPCAMCLinkMapHandler.h.

Referenced by getNewObjects().

◆ n_sectors_

unsigned int RPCAMCLinkMapHandler::n_sectors_
protected

Definition at line 33 of file RPCAMCLinkMapHandler.h.

Referenced by getNewObjects(), and RPCAMCLinkMapHandler().

◆ since_run_

cond::Time_t RPCAMCLinkMapHandler::since_run_
protected

Definition at line 28 of file RPCAMCLinkMapHandler.h.

Referenced by getNewObjects().

◆ txt_file_

std::string RPCAMCLinkMapHandler::txt_file_
protected

Definition at line 36 of file RPCAMCLinkMapHandler.h.

Referenced by getNewObjects().

◆ wheel_not_side_

bool RPCAMCLinkMapHandler::wheel_not_side_
protected

Definition at line 31 of file RPCAMCLinkMapHandler.h.

Referenced by getNewObjects().

◆ wos_fed_

std::vector<int> RPCAMCLinkMapHandler::wos_fed_
protected

Definition at line 32 of file RPCAMCLinkMapHandler.h.

Referenced by getNewObjects(), and RPCAMCLinkMapHandler().

◆ wos_sector_amc_

std::vector<std::vector<int> > RPCAMCLinkMapHandler::wos_sector_amc_
protected

Definition at line 34 of file RPCAMCLinkMapHandler.h.

Referenced by getNewObjects(), and RPCAMCLinkMapHandler().