Traditionally, the names of template types are just a single upper-case letter:
template<class A, class B, class C>
class Foo {};
But I hesitate to do this because it's non-descriptive and hard therefore to read. So, wouldn't something like this be better:
template<class AtomT, class BioT, class ChemT>
class Foo {};
I also tend to think the following would not be a bad idea:
template<class ATOM, class BIO, class CHEM>
class Foo {};
It makes them stand out (and also, it's upper-case letters again). What's your opinion?