diff --git a/include/Topology/generic/traversorCell.h b/include/Topology/generic/traversorCell.h index 2d9f70f86b81738b1e2fbd0f648cab3458ca15f8..2697ae5af13b0192c65f7b2a499b668aeea4ee12 100644 --- a/include/Topology/generic/traversorCell.h +++ b/include/Topology/generic/traversorCell.h @@ -95,11 +95,43 @@ public: } ; +//template +//class TraversorV : public TraversorCell +//{ +//public: +// TraversorV(MAP& m, bool forceDartMarker = false, unsigned int thread = 0) : TraversorCell(m, forceDartMarker, thread) +// {} +//}; + +//template +//class TraversorE : public TraversorCell +//{ +//public: +// TraversorE(MAP& m, bool forceDartMarker = false, unsigned int thread = 0) : TraversorCell(m, forceDartMarker, thread) +// {} +//}; + +//template +//class TraversorF : public TraversorCell +//{ +//public: +// TraversorF(MAP& m, bool forceDartMarker = false, unsigned int thread = 0) : TraversorCell(m, forceDartMarker, thread) +// {} +//}; + +//template +//class TraversorW : public TraversorCell +//{ +//public: +// TraversorW(MAP& m, bool forceDartMarker = false, unsigned int thread = 0) : TraversorCell(m, forceDartMarker, thread) +// {} +//}; + template class TraversorV : public TraversorCell { public: - TraversorV(MAP& m, bool forceDartMarker = false, unsigned int thread = 0) : TraversorCell(m, forceDartMarker, thread) + TraversorV(MAP& m, unsigned int thread = 0) : TraversorCell(m, false, thread) {} }; @@ -107,7 +139,7 @@ template class TraversorE : public TraversorCell { public: - TraversorE(MAP& m, bool forceDartMarker = false, unsigned int thread = 0) : TraversorCell(m, forceDartMarker, thread) + TraversorE(MAP& m, unsigned int thread = 0) : TraversorCell(m, false, thread) {} }; @@ -115,7 +147,7 @@ template class TraversorF : public TraversorCell { public: - TraversorF(MAP& m, bool forceDartMarker = false, unsigned int thread = 0) : TraversorCell(m, forceDartMarker, thread) + TraversorF(MAP& m, unsigned int thread = 0) : TraversorCell(m, false, thread) {} }; @@ -123,7 +155,7 @@ template class TraversorW : public TraversorCell { public: - TraversorW(MAP& m, bool forceDartMarker = false, unsigned int thread = 0) : TraversorCell(m, forceDartMarker, thread) + TraversorW(MAP& m, unsigned int thread = 0) : TraversorCell(m, false, thread) {} };