#include "Knot.h"#include "AcnetDevice.h"#include <TTree.h>#include <map>#include <string>#include <iostream>Go to the source code of this file.
Classes | |
| class | KnotImp |
Functions | |
| string | acnet2branchname (string n) |
|
|
Definition at line 13 of file Knot.cxx. 00014 {
00015 string out = "";
00016 for (size_t ind=0; ind<8 && ind<n.size(); ++ind) {
00017 if (n[ind] == ':') continue;
00018 out.push_back(tolower(n[ind]));
00019 }
00020 out += ".";
00021 return out;
00022 }
|
1.3.9.1