CMS 3D CMS Logo

MemoryBase.cc
Go to the documentation of this file.
3 
6 
7 #include <set>
8 #include <filesystem>
9 
10 using namespace trklet;
11 using namespace std;
12 
13 MemoryBase::MemoryBase(string name, Settings const& settings) : name_(name), settings_(settings) {
14  iSector_ = 0;
15  bx_ = 0;
16  event_ = 0;
17 }
18 
19 void MemoryBase::initLayerDisk(unsigned int pos, int& layer, int& disk) {
20  string subname = name_.substr(pos, 2);
21  layer = 0;
22  disk = 0;
23 
24  if (subname.substr(0, 1) == "L")
25  layer = stoi(subname.substr(1, 1));
26  else if (subname.substr(0, 1) == "D")
27  disk = stoi(subname.substr(1, 1));
28  else
29  throw cms::Exception("BadConfig") << __FILE__ << " " << __LINE__ << " name = " << name_ << " subname = " << subname
30  << " " << layer << " " << disk;
31 }
32 
33 unsigned int MemoryBase::initLayerDisk(unsigned int pos) {
34  int layer, disk;
35  initLayerDisk(pos, layer, disk);
36 
37  if (disk > 0)
38  return N_DISK + disk;
39  return layer - 1;
40 }
41 
42 void MemoryBase::initSpecialSeeding(unsigned int pos, bool& overlap, bool& extra, bool& extended) {
43  overlap = false;
44  extra = false;
45  extended = false;
46 
47  char subname = name_[pos];
48 
49  static const std::set<char> overlapset = {
50  'X', 'Y', 'W', 'Q', 'R', 'S', 'T', 'Z', 'x', 'y', 'w', 'q', 'r', 's', 't', 'z'};
51  overlap = overlapset.find(subname) != overlapset.end();
52 
53  static const std::set<char> extraset = {'I', 'J', 'K', 'L'};
54  extra = extraset.find(subname) != extraset.end();
55 
56  static const std::set<char> extendedset = {
57  'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'x', 'y', 'z', 'w', 'q', 'r', 's', 't'};
58  extended = extendedset.find(subname) != extendedset.end();
59 }
60 
62  // Get the first occurrence
63  size_t pos = data.find(toSearch);
64 
65  // Repeat till end is reached
66  while (pos != std::string::npos) {
67  // Replace this occurrence of Sub String
68  data.replace(pos, toSearch.size(), replaceStr);
69  // Get the next occurrence from the current position
70  pos = data.find(toSearch, pos + replaceStr.size());
71  }
72 }
73 
75  std::string fname = filebase + getName();
76 
77  findAndReplaceAll(fname, "PHIa", "PHIaa");
78  findAndReplaceAll(fname, "PHIb", "PHIbb");
79  findAndReplaceAll(fname, "PHIc", "PHIcc");
80  findAndReplaceAll(fname, "PHId", "PHIdd");
81 
82  findAndReplaceAll(fname, "PHIx", "PHIxx");
83  findAndReplaceAll(fname, "PHIy", "PHIyy");
84  findAndReplaceAll(fname, "PHIz", "PHIzz");
85  findAndReplaceAll(fname, "PHIw", "PHIww");
86 
87  fname += "_";
88  if (iSector_ + 1 < 10)
89  fname += "0";
91  fname += ".dat";
92 
93  openfile(out_, first, dirName, dirName + fname, __FILE__, __LINE__);
94 
95  out_ << "BX = " << (bitset<3>)bx_ << " Event : " << event_ << endl;
96 
97  bx_++;
98  event_++;
99  if (bx_ > 7)
100  bx_ = 0;
101 }
102 
103 size_t MemoryBase::find_nth(const string& haystack, size_t pos, const string& needle, size_t nth) {
104  size_t found_pos = haystack.find(needle, pos);
105  if (0 == nth || string::npos == found_pos)
106  return found_pos;
107  return find_nth(haystack, found_pos + 1, needle, nth - 1);
108 }
static size_t find_nth(const std::string &haystack, size_t pos, const std::string &needle, size_t nth)
Definition: MemoryBase.cc:103
constexpr int N_DISK
Definition: Settings.h:22
unsigned int iSector_
Definition: MemoryBase.h:44
void initSpecialSeeding(unsigned int pos, bool &overlap, bool &extra, bool &extended)
Definition: MemoryBase.cc:42
MemoryBase(std::string name, Settings const &settings)
Definition: MemoryBase.cc:13
std::string to_string(const V &value)
Definition: OMSAccess.h:71
void openFile(bool first, std::string dirName, std::string filebase)
Definition: MemoryBase.cc:74
constexpr std::array< uint8_t, layerIndexSize > layer
void findAndReplaceAll(std::string &data, std::string toSearch, std::string replaceStr)
Definition: MemoryBase.cc:61
std::ofstream out_
Definition: MemoryBase.h:46
std::string const & getName() const
Definition: MemoryBase.h:19
string fname
main script
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:79
std::string name_
Definition: MemoryBase.h:43
void initLayerDisk(unsigned int pos, int &layer, int &disk)
Definition: MemoryBase.cc:19
std::ofstream openfile(const std::string &dir, const std::string &fname, const char *file, int line)
Definition: Util.h:139