public CustomerAccountsGenerator(Table catalog_tbl, TPCEGenerator generator) {
super(catalog_tbl, generator);
// do not need the Table for this. Nasty, though. Have to use type casting since we need specific functions
customerGenerator = (CustomerGenerator)generator.getTableGen(TPCEConstants.TABLENAME_CUSTOMER, null);
rnd = new EGenRandom(EGenRandom.RNG_SEED_TABLE_DEFAULT);
taxableNames = generator.getInputFile(InputFile.TAXACC);
nonTaxableNames = generator.getInputFile(InputFile.NONTAXACC);
person = new PersonHandler(generator.getInputFile(InputFile.LNAME), generator.getInputFile(InputFile.FEMFNAME),
generator.getInputFile(InputFile.MALEFNAME));