Initializing Shapes in a 'For' Loop

Hi all,

Just a quick question:

How can I initialize a set of shapes and add nodes in a ‘for’ loop without using TGeoManager (I’m working with LITRANI where TGeo doesn’t exist yet)? Is it a case of just converting an integer to a string?

eg

For(some_counter) {
TShape *some_counter = new TShape(…);
TNode *node_same_counter = new TNode(…);
}

Cheers,

Rich